/* ============================================================
   BAIBUA AI Web Builder — Landing Page Styles
   Design: pastel aurora, template-based, Bai Jamjuree font
============================================================ */

/* ---------- Reset & Base ---------- */
/* Tailwind preflight already provides box-sizing:border-box for all elements,
   and applying margin/padding:0 on the universal selector was leaking into
   HeroUI Modal mounted on this route. Keep landing-specific resets scoped. */
mark { background: transparent; color: inherit; font-style: normal; }

:root {
  /* Brand gradient — vivid green button */
  --grad-start:  #43A047;
  --grad-end:    #1B5E20;

  /* Keyword highlight — BAIBUA green */
  --hl-bg:   rgba(67,160,71,.14);
  --hl-text: #1B5E20;

  /* Text */
  --text-950: #0A0A0F;
  --text-900: #111827;
  --text-700: #374151;
  --text-500: #6B7280;
  --text-400: #9CA3AF;
  --text-200: #E5E7EB;
  --text-100: #F3F4F6;

  /* Surfaces */
  --white: #ffffff;

  /* Footer */
  --footer-start: #1B5E20;
  --footer-mid:   #1B5E20;
  --footer-end:   #1B5E20;

  /* Radius */
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   24px;
  --r-2xl:  32px;
  --r-pill: 999px;

  /* Shadow */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.07), 0 2px 8px rgba(0,0,0,.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.04);
  --shadow-xl: 0 24px 60px rgba(0,0,0,.10), 0 8px 24px rgba(0,0,0,.05);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Bai Jamjuree', system-ui, -apple-system, sans-serif;
  color: var(--text-700);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}
.sec-pad { padding: 108px 0; }

/* ============================================================
   TYPOGRAPHY
============================================================ */
.highlight {
  background: var(--hl-bg);
  color: var(--hl-text);
  border-radius: 6px;
  padding: 2px 10px;
}

.sec-header {
  text-align: center;
  margin-bottom: 72px;
}

.sec-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 18px;
  background: linear-gradient(90deg, rgba(200,240,210,.80) 0%, rgba(232,248,236,.85) 100%);
  border: 1px solid rgba(67,160,71,.18);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  color: #2E7D32;
  margin-bottom: 22px;
  box-shadow: 0 2px 10px rgba(67,160,71,.10);
}

.sec-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: var(--text-950);
  line-height: 1.12;
  letter-spacing: -.03em;
  margin-bottom: 18px;
}

.sec-desc {
  font-size: 17px;
  color: var(--text-500);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}
/* Section descriptions in Features3 use a single-line layout on desktop
 *  (Thai sentence reads as one line over wide hero card) but MUST wrap on
 *  mobile or the page horizontally scrolls. md+ keeps the original look. */
.sec-desc--nowrap-md { max-width: none; }
@media (min-width: 768px) {
  .sec-desc--nowrap-md { white-space: nowrap; }
}

/* ============================================================
   BUTTONS
============================================================ */
.btn-gradient {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: linear-gradient(175deg, var(--grad-start) 0%, var(--grad-end) 100%);
  color: white;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  box-shadow: 0 4px 24px rgba(27,94,32,.45), inset 0 1px 0 rgba(255,255,255,.22);
  transition: all .22s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
}
.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(58,103,72,.46), inset 0 1px 0 rgba(255,255,255,.18);
}
.btn-gradient:active { transform: translateY(0); }

.btn-xl { padding: 17px 42px; font-size: 16px; }
.btn-lg { padding: 15px 34px; font-size: 15px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 11px 20px;
  color: var(--text-700);
  border-radius: var(--r-pill);
  font-weight: 500;
  font-size: 14px;
  transition: all .18s;
}
.btn-ghost:hover { background: rgba(0,0,0,.05); color: var(--text-950); }

.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-700);
  background: none;
  transition: color .18s;
}
.btn-play:hover { color: var(--hl-text); }

.play-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--text-200);
  background: var(--white);
  box-shadow: var(--shadow-md);
  color: var(--text-700);
  flex-shrink: 0;
  transition: all .2s;
}
.btn-play:hover .play-circle {
  border-color: var(--hl-text);
  color: var(--hl-text);
  box-shadow: 0 4px 20px rgba(27,94,32,.18);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 17px 32px;
  color: var(--text-700);
  border: 1.5px solid rgba(0,0,0,.14);
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 16px;
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all .2s;
  white-space: nowrap;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.92);
  border-color: rgba(0,0,0,.25);
  transform: translateY(-1px);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  color: var(--text-700);
  border: 1.5px solid rgba(0,0,0,.15);
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 15px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all .2s;
  white-space: nowrap;
}
.btn-outline-dark:hover {
  border-color: rgba(0,0,0,.28);
  background: #F9FAFB;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   NAV
============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 14px 20px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 58px;
  padding: 0 20px 0 16px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.52);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.80);
  box-shadow: 0 4px 28px rgba(0,0,0,.08), inset 0 1px 0 rgba(255,255,255,.70);
  transition: box-shadow .3s;
}
.nav.scrolled .nav-inner {
  box-shadow: 0 6px 36px rgba(0,0,0,.14), inset 0 1px 0 rgba(255,255,255,.60);
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -.025em;
  color: var(--text-950);
  flex-shrink: 0;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, #43A047, #E91E63);
  box-shadow: 0 4px 14px rgba(67,160,71,.35);
  flex-shrink: 0;
}

.logo-hosting { color: #1B5E20; }
.logo-lotus   { color: #E91E63; }
.logo-img { height: 36px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-700);
  transition: all .18s;
}
.nav-links a:hover { background: rgba(0,0,0,.05); color: var(--text-950); }

.nav-actions { display: flex; align-items: center; gap: 6px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-700);
  border-radius: 2px;
  transition: all .25s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 28px 28px;
  border-bottom: 1px solid var(--text-200);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 16px;
  border-radius: var(--r-sm);
  font-weight: 500;
  color: var(--text-700);
  transition: .15s;
}
.mobile-menu a:hover { background: var(--text-100); color: var(--text-950); }
.mobile-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 88px;
  overflow: hidden;
  background:
    linear-gradient(to bottom, transparent 50%, #ffffff 100%),
    radial-gradient(ellipse at 0%   30%, rgba(255,172,190,.70) 0%, transparent 55%),
    radial-gradient(ellipse at 50%  10%, rgba(255,246,220,.80) 0%, transparent 52%),
    radial-gradient(ellipse at 100% 30%, rgba(210,243,205,.75) 0%, transparent 52%),
    radial-gradient(ellipse at 20%  90%, rgba(255,200,215,.50) 0%, transparent 48%),
    radial-gradient(ellipse at 80%  85%, rgba(184,240,200,.50) 0%, transparent 45%),
    #FFFAF8;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding-top: 56px;
  padding-bottom: 56px;
}

/* --- Hero text --- */
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 18px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0,0,0,.09);
  border-radius: var(--r-pill);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-700);
  width: fit-content;
  box-shadow: var(--shadow-sm);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #43A047, #E91E63);
  box-shadow: 0 0 0 3px rgba(67,160,71,.22);
  animation: pulseDot 2.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 0 3px rgba(67,160,71,.22); }
  50%      { box-shadow: 0 0 0 7px rgba(67,160,71,.06); }
}

.hero-heading {
  font-size: clamp(44px, 5.5vw, 74px);
  font-weight: 900;
  color: var(--text-950);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.hero-body {
  font-size: 18px;
  color: var(--text-500);
  line-height: 1.78;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-avatars { display: flex; }
.tav {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2.5px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: white;
  margin-left: -9px;
  box-shadow: var(--shadow-sm);
}
.tav:first-child { margin-left: 0; }
.tav-more { background: var(--text-200); color: var(--text-700); font-size: 10px; }
.trust-text { font-size: 13.5px; color: var(--text-500); }
.trust-text strong { color: var(--text-900); font-weight: 700; }

/* --- Hero visual (image-based) --- */
.hero-visual {
  position: relative;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blob-glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(ellipse at 40% 40%,
    rgba(249,168,212,.40) 0%,
    rgba(167,139,250,.30) 40%,
    rgba(67,160,71,.18) 70%,
    transparent 100%
  );
  filter: blur(48px);
  border-radius: 50%;
  animation: glowPulse 5s ease-in-out infinite;
  pointer-events: none;
}
.blob-glow--2 {
  inset: -40px;
  background: radial-gradient(ellipse at 62% 62%,
    rgba(67,160,71,.28) 0%,
    rgba(233,30,99,.18) 42%,
    rgba(192,216,248,.22) 70%,
    transparent 100%
  );
  animation-delay: 2.5s;
}
@keyframes glowPulse {
  0%,100% { opacity: .75; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.06); }
}

.hero-img-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 520px;
  filter: drop-shadow(0 28px 64px rgba(67,160,71,.14)) drop-shadow(0 8px 24px rgba(0,0,0,.08));
  animation: imgFloat 6s ease-in-out infinite;
}
.hero-img-wrap img { width: 100%; height: auto; display: block; }

@keyframes imgFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* Floating stat badges */
.float-badge {
  position: absolute;
  background: white;
  border-radius: var(--r-lg);
  padding: 10px 16px;
  box-shadow: 0 8px 28px rgba(0,0,0,.10), 0 2px 8px rgba(0,0,0,.04);
  border: 1px solid rgba(255,255,255,.95);
  display: flex;
  align-items: center;
  gap: 11px;
  z-index: 4;
}
.fb-tl {
  top: 10%;
  left: -4%;
  animation: imgFloat 4.5s ease-in-out infinite;
}
.fb-br {
  bottom: 12%;
  right: -4%;
  animation: imgFloat 5s ease-in-out infinite;
  animation-delay: 1.8s;
}
.fb-icon {
  width: 34px; height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fb-label { font-size: 11px; color: var(--text-400); font-weight: 500; margin-bottom: 2px; }
.fb-val   { font-size: 13.5px; color: var(--text-950); font-weight: 800; letter-spacing: -.02em; }

/* ---------- Blob wrapper ---------- */
.blob-wrapper {
  position: relative;
  width: 340px;
  height: 340px;
  z-index: 3;
  flex-shrink: 0;
}
.blob {
  position: absolute;
  inset: 0;
  border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  background: linear-gradient(135deg,
    rgba(184,240,200,.85) 0%,
    rgba(167,139,250,.60) 30%,
    rgba(255,172,190,.65) 60%,
    rgba(103,232,249,.55) 85%
  );
  box-shadow:
    inset 0 0 90px rgba(255,255,255,.50),
    0 30px 80px rgba(167,139,250,.20);
  animation: blobMorph 14s ease-in-out infinite, blobFloat 6s ease-in-out infinite;
}
.blob-shine {
  position: absolute;
  top: 6%; left: 10%;
  width: 52%; height: 40%;
  background: rgba(255,255,255,.55);
  border-radius: 50% 50% 50% 50% / 65% 65% 35% 35%;
  filter: blur(16px);
  transform: rotate(-18deg);
}
.blob-shimmer {
  position: absolute;
  bottom: 16%; right: 10%;
  width: 24%; height: 20%;
  background: rgba(103,232,249,.42);
  border-radius: 50%;
  filter: blur(10px);
}
@keyframes blobMorph {
  0%,100% { border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; }
  20%      { border-radius: 42% 58% 68% 32% / 52% 36% 64% 48%; }
  40%      { border-radius: 56% 44% 36% 64% / 46% 66% 34% 54%; }
  60%      { border-radius: 46% 54% 62% 38% / 62% 38% 62% 38%; }
  80%      { border-radius: 72% 28% 52% 48% / 36% 58% 42% 64%; }
}
@keyframes blobFloat {
  0%,100% { transform: translateY(0) rotate(0deg); }
  33%      { transform: translateY(-16px) rotate(1deg); }
  66%      { transform: translateY(-8px) rotate(-1deg); }
}

/* ---------- Mockup cards ---------- */
.mockup-card {
  position: absolute;
  background: white;
  border-radius: var(--r-xl);
  box-shadow: 0 8px 36px rgba(0,0,0,.09), 0 2px 8px rgba(0,0,0,.04);
  border: 1px solid rgba(255,255,255,.95);
  overflow: hidden;
  z-index: 2;
}
.mc-back-1 { width: 210px; top: 4%; right: -10px; transform: rotate(5.5deg); animation: blobFloat 7s ease-in-out infinite; animation-delay: .6s; }
.mc-back-2 { width: 190px; bottom: 6%; left: -10px; transform: rotate(-5deg); animation: blobFloat 8s ease-in-out infinite; animation-delay: 1.2s; }
.mc-topbar { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-bottom: 1px solid var(--text-100); background: #FAFAFA; }
.mc-dots { display: flex; gap: 5px; flex-shrink: 0; }
.mc-dots span { display: block; width: 9px; height: 9px; border-radius: 50%; }
.mc-dots span:nth-child(1) { background: #FF5F57; }
.mc-dots span:nth-child(2) { background: #FEBC2E; }
.mc-dots span:nth-child(3) { background: #28C840; }
.mc-topbar-line { flex: 1; height: 7px; background: var(--text-200); border-radius: 4px; }
.mc-content { padding: 14px; display: flex; flex-direction: column; gap: 8px; }
.mc-line { height: 8px; background: var(--text-200); border-radius: 4px; width: 100%; }
.mc-line--title { width: 75%; height: 11px; background: #D1D5DB; }
.mc-line--sm { width: 52%; }
.mc-line--xs { width: 22px; height: 6px; }
.mc-mini-cards { display: flex; flex-direction: column; gap: 7px; margin-top: 4px; }
.mc-mini { display: flex; align-items: center; gap: 9px; padding: 7px 10px; background: #F9FAFB; border-radius: 9px; border: 1px solid var(--text-100); }
.mci-dot { width: 22px; height: 22px; border-radius: 7px; flex-shrink: 0; }
.mci-lines { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.mci-lines div { height: 6px; background: var(--text-200); border-radius: 3px; }
.mc-chart { display: flex; align-items: flex-end; gap: 7px; height: 80px; padding-top: 4px; }
.mc-bar { flex: 1; border-radius: 4px 4px 0 0; min-height: 18%; }

/* ============================================================
   LOGOS STRIP
============================================================ */
.logos-strip {
  padding: 52px 0;
  border-top: 1px solid rgba(0,0,0,.06);
  border-bottom: 1px solid rgba(0,0,0,.06);
  background: rgba(255,255,255,.75);
  overflow: hidden;
}
.logos-label {
  text-align: center;
  font-size: 12.5px;
  color: var(--text-400);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.logos-track { overflow: hidden; position: relative; }
.logos-track::before,
.logos-track::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.logos-track::before { left: 0;  background: linear-gradient(to right, rgba(255,255,255,.85), transparent); }
.logos-track::after  { right: 0; background: linear-gradient(to left,  rgba(255,255,255,.85), transparent); }

.logos-inner {
  display: flex;
  animation: marquee 32s linear infinite;
  width: max-content;
}
.logos-inner span {
  display: flex;
  align-items: center;
  padding: 0 44px;
  font-size: 15.5px;
  font-weight: 800;
  color: var(--text-400);
  letter-spacing: -.02em;
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   FEATURES
============================================================ */
.features { background: var(--white); }

.feat-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feat-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.065);
  border-radius: var(--r-2xl);
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--shadow-sm);
}
.feat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.fc-span2 { grid-column: span 2; }
.fc-full  { grid-column: 1 / -1; }

.fc-accent {
  background: linear-gradient(140deg, #166534 0%, #15803D 50%, #16A34A 100%);
  border: none;
  box-shadow: 0 12px 40px rgba(22,101,52,.28), var(--shadow-md);
}
.fc-accent h3 { color: white; }
.fc-accent p  { color: rgba(255,255,255,.78); }
.fc-accent .tav-more { background: rgba(255,255,255,.2); color: white; }

.fc-accent-content {
  display: flex;
  align-items: center;
  gap: 48px;
  width: 100%;
}
.fc-accent-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  flex-shrink: 0;
  margin-left: auto;
}

.fc-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feat-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-950);
  line-height: 1.25;
}
.feat-card p {
  font-size: 14.5px;
  color: var(--text-500);
  line-height: 1.78;
}

/* Progress bars */
.fc-progress { display: flex; flex-direction: column; gap: 9px; margin-top: 4px; }
.fcp-row { display: flex; align-items: center; gap: 12px; }
.fcp-row span {
  font-size: 12px;
  color: var(--text-400);
  font-weight: 500;
  white-space: nowrap;
  width: 56px;
}
.fcp-pct { width: auto !important; min-width: 52px; text-align: right; }
.fcp-bar {
  flex: 1;
  height: 7px;
  background: var(--text-100);
  border-radius: var(--r-pill);
  overflow: hidden;
}
.fcp-fill { height: 100%; border-radius: var(--r-pill); }

.fc-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--hl-text);
  margin-top: auto;
  transition: opacity .15s;
}
.fc-link:hover { opacity: .72; }
.fc-link--white { color: rgba(255,255,255,.85); }
.fc-link--white:hover { color: white; opacity: 1; }

.team-avs { display: flex; }

/* ============================================================
   HOW IT WORKS
============================================================ */
.how {
  background:
    linear-gradient(180deg,
      rgba(255,248,252,1)  0%,
      rgba(248,245,255,1) 50%,
      rgba(240,253,250,1) 100%
    );
}

.steps-row {
  display: flex;
  align-items: center;
  gap: 0;
}
.step-arrow {
  flex-shrink: 0;
  padding: 0 6px;
  opacity: .8;
}

.step-card {
  flex: 1;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.065);
  border-radius: var(--r-2xl);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-md);
  transition: all .25s cubic-bezier(.4,0,.2,1);
}
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.step-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--text-400);
  text-transform: uppercase;
}

.step-ico {
  width: 50px; height: 50px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(67,160,71,.18);
}

.step-card h3 { font-size: 17px; font-weight: 800; color: var(--text-950); line-height: 1.3; }
.step-card p  { font-size: 13.5px; color: var(--text-500); line-height: 1.72; }

/* ============================================================
   PORTFOLIO
============================================================ */
.portfolio { background: var(--white); }

.port-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.port-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .25s cubic-bezier(.4,0,.2,1);
}
.port-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.port-thumb {
  height: 280px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pt-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  flex-shrink: 0;
}
.pt-logo {
  width: 48px; height: 7px;
  border-radius: 4px;
  flex-shrink: 0;
}
.pt-navlinks {
  display: flex;
  gap: 6px;
  flex: 1;
}
.pt-navlinks div {
  width: 24px; height: 6px;
  background: rgba(0,0,0,.15);
  border-radius: 3px;
}
.pt-btn {
  width: 38px; height: 16px;
  border-radius: 8px;
  flex-shrink: 0;
}
.pt-hero { flex: 1; display: flex; flex-direction: column; }

.pt-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 5px 13px;
  border-radius: var(--r-pill);
  font-size: 11.5px;
  font-weight: 700;
  color: white;
  letter-spacing: -.01em;
}

.port-info {
  padding: 18px 22px 22px;
}
.port-info h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-950);
  margin-bottom: 4px;
  line-height: 1.3;
}
.port-info p {
  font-size: 13.5px;
  color: var(--text-500);
  margin-bottom: 14px;
  line-height: 1.6;
}

.port-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--hl-text);
  transition: opacity .15s;
}
.port-link:hover { opacity: .72; }

.port-more {
  text-align: center;
  margin-top: 52px;
}

/* ============================================================
   FAQ
============================================================ */
.faq { background: var(--white); }

.faq-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}
.faq-head .sec-title { margin-bottom: 10px; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-contact-footer {
  text-align: center;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,.06);
}
.faq-contact-footer p {
  font-size: 15px;
  color: var(--text-500);
  margin-bottom: 14px;
}
.faq-contact-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 20px;
}
.faq-contact-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--hl-text);
  transition: opacity .15s;
}
.faq-contact-links a:hover { opacity: .7; }

.faq-item {
  background: #F9FAFB;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 16px;
  overflow: hidden;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 28px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-900);
  text-align: left;
  gap: 16px;
  font-family: inherit;
  transition: color .15s;
}
.faq-q:hover { color: var(--hl-text); }

.faq-arr {
  flex-shrink: 0;
  color: #9CA3AF;
  transition: transform .28s cubic-bezier(.4,0,.2,1);
}
.faq-item.open .faq-arr { transform: rotate(180deg); }
.faq-item.open .faq-q { border-bottom: 1px solid rgba(0,0,0,.06); }

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .38s cubic-bezier(.4,0,.2,1);
}
.faq-item.open .faq-a { max-height: 400px; }

.faq-a p {
  padding: 20px 28px 24px;
  font-size: 14.5px;
  color: var(--text-500);
  line-height: 1.78;
  margin: 0;
}

/* ============================================================
   CTA FINAL
============================================================ */
.cta-final {
  position: relative;
  padding: 128px 0;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 0%   0%,   rgba(255,179,198,.92) 0%, transparent 55%),
    radial-gradient(ellipse at 55%  0%,   rgba(255,245,192,.90) 0%, transparent 52%),
    radial-gradient(ellipse at 100% 0%,   rgba(192,216,248,.72) 0%, transparent 50%),
    radial-gradient(ellipse at 0%   100%, rgba(232,180,232,.82) 0%, transparent 52%),
    radial-gradient(ellipse at 50%  100%, rgba(184,240,222,.86) 0%, transparent 52%),
    radial-gradient(ellipse at 100% 88%,  rgba(192,216,248,.80) 0%, transparent 48%),
    #FFF8FC;
}

.wave-top {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 110px;
  z-index: 1;
  line-height: 0;
}
.wave-top svg { width: 100%; height: 100%; display: block; }

.cta-inner { position: relative; z-index: 2; }

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 18px;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0,0,0,.09);
  border-radius: var(--r-pill);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-700);
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}

.cta-title {
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 900;
  color: var(--text-950);
  line-height: 1.1;
  letter-spacing: -.04em;
  margin-bottom: 22px;
}

.cta-desc {
  font-size: 18px;
  color: var(--text-500);
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.78;
}

.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta-note { font-size: 13px; color: var(--text-400); }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: linear-gradient(160deg,
    var(--footer-start) 0%,
    var(--footer-mid)   45%,
    var(--footer-end)   100%
  );
  color: rgba(255,255,255,.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.4fr 1fr;
  gap: 40px;
  padding-top: 52px;
  padding-bottom: 52px;
}

.footer-logo-link { display: inline-block; margin-bottom: 14px; }
.footer-logo-img { height: 28px; width: auto; filter: brightness(0) invert(1); opacity: .9; }

.footer-brand p {
  font-size: 12.5px;
  line-height: 1.75;
  color: rgba(255,255,255,.70);
  margin-bottom: 16px;
}

.footer-pay-row { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-pay-badge {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 6px;
  padding: 4px 10px;
  letter-spacing: .03em;
}

.footer-col h4 {
  font-size: 10.5px;
  font-weight: 700;
  color: #A5D6A7;
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-col a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(255,255,255,.72);
  margin-bottom: 9px;
  transition: color .15s;
  text-decoration: none;
}
.footer-col a:hover { color: #fff; }
.fc-arr { font-size: 15px; opacity: .5; }

.footer-col--location .footer-col { display: flex; flex-direction: column; }
.footer-addr {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}
.footer-addr strong {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.90);
}
.footer-addr span {
  font-size: 12px;
  color: rgba(255,255,255,.65);
  line-height: 1.70;
}

.footer-col .footer-contact-item,
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start !important;
  gap: 9px;
  font-size: 12.5px;
  color: rgba(255,255,255,.78);
  margin-bottom: 10px;
  transition: color .15s;
  text-decoration: none;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; opacity: .75; color: #A5D6A7; }
.footer-contact-item:hover { color: #fff; }
.footer-taxid { cursor: default; }
.footer-taxid span { font-size: 11.5px; line-height: 1.6; color: rgba(255,255,255,.65); }

.footer-socials { display: flex; gap: 8px; margin-top: 8px; }
.footer-soc {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.72);
  transition: background .18s, color .18s;
}
.footer-soc:hover { background: rgba(255,255,255,.22); color: #fff; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.10); }
.footer-bot-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 12.5px;
  color: rgba(255,255,255,.48);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,.48); transition: color .15s; }
.footer-legal a:hover { color: rgba(255,255,255,.80); }

/* ============================================================
   HERO — centered layout
============================================================ */
.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 96px 0 80px;
  gap: 36px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 18px;
  background: linear-gradient(90deg, rgba(200,240,210,.80) 0%, rgba(232,248,236,.85) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(67,160,71,.18);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  color: #2E7D32;
  box-shadow: 0 2px 10px rgba(67,160,71,.10);
}

.hero-heading-c {
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 900;
  color: var(--text-950);
  line-height: 1.10;
  letter-spacing: -.035em;
  white-space: nowrap;
  text-align: center;
  width: 100%;
}

.hero-grad-line {
  display: block;
  font-size: clamp(18px, 2.2vw, 30px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.6;
  padding: 6px 0 2px;
  margin-top: 24px;
  background: linear-gradient(90deg, #1B5E20 0%, #43A047 50%, #81C784 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-body-c {
  font-size: 19px;
  color: var(--text-500);
  line-height: 1.72;
  max-width: 520px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  height: 52px;
  border-radius: var(--r-pill);
  border: 1.5px solid rgba(0,0,0,.18);
  background: rgba(255,255,255,.70);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text-900);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background .18s, border-color .18s;
}
.btn-ghost-dark:hover { background: white; border-color: rgba(0,0,0,.28); }

.btn-play-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,.20);
  color: var(--text-700);
  flex-shrink: 0;
}

.d-hide { display: none; }
@media (min-width: 640px) { .d-hide { display: inline; } }

/* ============================================================
   HERO DEMO BOX
============================================================ */
.hero-demo {
  width: 100%;
  max-width: 680px;
  background: white;
  border-radius: var(--r-2xl);
  box-shadow: 0 16px 64px rgba(0,0,0,.10), 0 4px 20px rgba(0,0,0,.05);
  border: 1px solid rgba(0,0,0,.07);
  overflow: hidden;
  text-align: left;
}

.demo-tabs {
  display: flex;
  gap: 4px;
  padding: 12px 16px 10px;
  border-bottom: 1px solid rgba(0,0,0,.07);
}

.demo-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-400);
  cursor: pointer;
  font-family: inherit;
  transition: all .15s;
  background: transparent;
  border: none;
}
.demo-tab--on {
  background: var(--text-100);
  color: var(--text-900);
  font-weight: 600;
}

.demo-inner {
  padding: 18px 20px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.demo-ai-msg {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.demo-av {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5E9068, #3A6748);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: white;
  letter-spacing: -.02em;
  flex-shrink: 0;
}

.demo-bubble {
  background: var(--text-100);
  border-radius: 4px 16px 16px 16px;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text-700);
  line-height: 1.55;
}

.demo-input-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--text-100);
  border-radius: var(--r-lg);
  padding: 10px 10px 10px 16px;
  border: 1px solid var(--text-200);
}

.demo-input-field {
  flex: 1;
  font-size: 14px;
  color: var(--text-400);
  font-family: inherit;
  line-height: 1.5;
  user-select: none;
}

.demo-go-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: linear-gradient(135deg, #43A047, #2E7D32);
  color: white;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(67,160,71,.28);
}

.demo-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding: 12px 20px 16px;
  border-top: 1px solid rgba(0,0,0,.06);
}

.demo-chip {
  padding: 5px 13px;
  border-radius: var(--r-pill);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-500);
  border: 1px solid var(--text-200);
  background: var(--white);
  cursor: pointer;
  font-family: inherit;
  transition: all .15s;
  white-space: nowrap;
}
.demo-chip:hover { background: var(--text-100); color: var(--text-900); border-color: var(--text-400); }

/* ============================================================
   HERO QUICK LINKS
============================================================ */
.hero-quick {
  display: flex;
  align-items: stretch;
  background: white;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  width: 100%;
  max-width: 680px;
}

.hq-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  transition: background .15s;
  text-align: left;
  min-width: 0;
}
.hq-item:hover { background: rgba(0,0,0,.03); }

.hq-ico {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hq-label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-900);
  margin-bottom: 2px;
  white-space: nowrap;
}
.hq-desc { font-size: 12px; color: var(--text-400); }

.hq-sep {
  width: 1px;
  background: rgba(0,0,0,.07);
  flex-shrink: 0;
  align-self: stretch;
}

/* ---------- Hero Bai Bua mascot ---------- */
.hero-baibua {
  display: flex;
  justify-content: center;
  width: 100%;
}
.hero-baibua-img {
  width: clamp(640px, 85vw, 1100px);
  height: auto;
  display: block;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,.12));
}

/* ---------- Hero product mockup — glassmorphism ---------- */
.hpm-wrap {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.hpm-glow { display: none; }
.hpm-card {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,.09);
  box-shadow: 0 20px 60px rgba(0,0,0,.12), 0 4px 16px rgba(0,0,0,.06);
  overflow: hidden;
}

/* App top bar */
.hpm-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: #F8F9FA;
  border-bottom: 1px solid #E5E7EB;
  gap: 12px;
}
.hpm-topbar-left { display: flex; align-items: center; gap: 8px; font-size: 12px; color: #6B7280; }
.hpm-tb-back { color: #9CA3AF; }
.hpm-tb-project { font-weight: 600; color: #111827; }
.hpm-tb-draft {
  font-size: 10px; padding: 2px 8px; border-radius: 99px;
  background: #FEF3C7; color: #92400E; font-weight: 500;
}
.hpm-topbar-right { display: flex; align-items: center; gap: 6px; }
.hpm-tb-btn {
  font-size: 11px; font-weight: 500; color: #374151;
  padding: 5px 12px; border-radius: 8px;
  border: 1px solid #E5E7EB;
  background: white;
  cursor: default;
}
.hpm-tb-btn--publish {
  display: inline-flex; align-items: center; gap: 5px;
  background: linear-gradient(135deg, #43A047, #1B5E20);
  color: white; border-color: transparent; font-weight: 600;
  box-shadow: 0 2px 10px rgba(27,94,32,.35);
}

/* Split body */
.hpm-body { display: grid; grid-template-columns: 1fr 320px; height: 400px; }

/* Preview panel */
.hpm-preview {
  display: flex; flex-direction: column;
  border-right: 1px solid #E5E7EB;
  overflow: hidden;
  background: #F3F4F6;
}
.hpm-preview-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 14px;
  background: #F8F9FA;
  border-bottom: 1px solid #E5E7EB;
  font-size: 11px; color: #6B7280;
}
.hpm-preview-tabs { display: flex; align-items: center; gap: 5px; font-weight: 600; color: #111827; }
.hpm-preview-url {
  flex: 1; text-align: center; font-size: 10.5px; color: #6B7280;
  background: white; border: 1px solid #E5E7EB;
  border-radius: 6px; padding: 3px 10px;
}

/* Mini website — realistic */
.hpm-site { flex: 1; overflow: hidden; background: white; }

.hpm-site-nav {
  display: flex; align-items: center;
  padding: 0 16px; height: 36px; gap: 12px;
  background: #1B5E20;
}
.hpm-site-logo { width: 80px; height: 10px; background: rgba(255,255,255,.85); border-radius: 3px; }
.hpm-site-nav-links { display: flex; gap: 10px; flex: 1; }
.hpm-site-link { width: 32px; height: 7px; background: rgba(255,255,255,.40); border-radius: 3px; }
.hpm-site-nav-btn { width: 52px; height: 22px; background: white; border-radius: 4px; opacity: .95; }

.hpm-site-hero-bg {
  height: 158px;
  background: linear-gradient(160deg, #1a3a2a 0%, #2d5a3a 45%, #1B5E20 100%);
  padding: 22px 20px 18px;
  display: flex; align-items: flex-start; flex-direction: column;
  justify-content: center; gap: 0;
  position: relative; overflow: hidden;
}
.hpm-site-hero-bg::after {
  content: '';
  position: absolute; right: 0; top: 0; bottom: 0; width: 45%;
  background: linear-gradient(135deg, rgba(100,180,100,.25), rgba(50,120,50,.15));
  border-radius: 40% 0 0 40%;
}
.hpm-site-hero-text { display: flex; flex-direction: column; gap: 6px; z-index: 1; }
.hpm-sh-tag { width: 70px; height: 16px; background: rgba(255,255,255,.18); border-radius: 99px; border: 1px solid rgba(255,255,255,.25); }
.hpm-sh-title { width: 200px; height: 16px; background: rgba(255,255,255,.92); border-radius: 3px; margin-top: 2px; }
.hpm-sh-title2 { width: 160px; height: 16px; background: rgba(255,255,255,.75); border-radius: 3px; }
.hpm-sh-sub { width: 240px; height: 7px; background: rgba(255,255,255,.45); border-radius: 3px; margin-top: 4px; }
.hpm-sh-sub--sm { width: 180px; }
.hpm-sh-btns { display: flex; gap: 8px; margin-top: 10px; }
.hpm-sh-cta { width: 80px; height: 26px; background: white; border-radius: 5px; box-shadow: 0 2px 8px rgba(0,0,0,.20); }
.hpm-sh-cta--ghost { background: transparent; width: 90px; border: 1.5px solid rgba(255,255,255,.55); box-shadow: none; }

/* Menu section */
.hpm-baibua-corner {
  position: absolute; bottom: -60px; left: -100px;
  width: 260px; height: auto; z-index: 10; pointer-events: none;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.15));
}
.hpm-site-menu { padding: 12px 16px 0; }
.hpm-site-menu-title { width: 90px; height: 9px; background: #1B5E20; border-radius: 3px; margin-bottom: 10px; opacity: .7; }
.hpm-site-cards { display: flex; gap: 8px; padding: 0 16px 12px; }
.hpm-site-card { flex: 1; border-radius: 10px; border: 1px solid #F3F4F6; overflow: hidden; }
.hpm-site-card-img { height: 52px; }
.hpm-site-card:nth-child(1) .hpm-site-card-img { background: linear-gradient(135deg,#A5D6A7,#43A047); }
.hpm-site-card:nth-child(2) .hpm-site-card-img { background: linear-gradient(135deg,#FFCC80,#F57C00); }
.hpm-site-card:nth-child(3) .hpm-site-card-img { background: linear-gradient(135deg,#F48FB1,#E91E63); }
.hpm-site-card-body { padding: 7px 8px; display: flex; flex-direction: column; gap: 4px; background: white; }
.hpm-site-card-line { height: 6px; background: #E5E7EB; border-radius: 3px; }
.hpm-site-card-line--sm { width: 55%; }
.hpm-site-card-price { height: 8px; width: 40px; background: #1B5E20; border-radius: 3px; opacity: .6; }

/* Chat panel */
.hpm-chat { display: flex; flex-direction: column; background: #FAFAFA; }
.hpm-chat-header {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px;
  border-bottom: 1px solid #E5E7EB; background: white;
}
.hpm-chat-av {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg,#43A047,#1B5E20);
  color: white; font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: 0 2px 8px rgba(27,94,32,.30);
}
.hpm-chat-title { font-size: 12px; font-weight: 600; color: #111827; }
.hpm-chat-sub { font-size: 10px; color: #43A047; }
.hpm-chat-reset { margin-left: auto; font-size: 10px; color: #9CA3AF; cursor: default; }

.hpm-chat-msgs {
  flex: 1; padding: 12px;
  display: flex; flex-direction: column; gap: 10px; overflow: hidden;
}
.hpm-msg { display: flex; gap: 7px; align-items: flex-start; }
.hpm-msg--user { flex-direction: row-reverse; }
.hpm-msg-av {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg,#43A047,#1B5E20);
  color: white; font-size: 8px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.hpm-msg-bubble {
  font-size: 11.5px; line-height: 1.55;
  padding: 8px 11px; border-radius: 12px;
  max-width: 210px; color: #374151;
  background: white; border: 1px solid #E5E7EB;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.hpm-msg--user .hpm-msg-bubble {
  background: linear-gradient(135deg,#43A047,#2E7D32);
  color: white; border-color: transparent;
}
.hpm-done-line { display: block; color: #2E7D32; font-size: 11px; margin-top: 3px; font-weight: 500; }

.hpm-chat-input-row {
  display: flex; gap: 8px; align-items: center;
  padding: 10px 12px; border-top: 1px solid #E5E7EB; background: white;
}
.hpm-chat-input {
  flex: 1; font-size: 11px; color: #9CA3AF;
  background: #F3F4F6; border-radius: 8px; padding: 7px 11px;
  border: 1px solid #E5E7EB;
}
.hpm-chat-send {
  width: 28px; height: 28px; border-radius: 8px;
  background: linear-gradient(135deg,#43A047,#1B5E20);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(27,94,32,.30);
}

/* ---------- Hero main image ---------- */
.hero-img-block {
  position: relative;
  width: 90vw;
  max-width: 1200px;
  margin: 16px auto 0;
  left: 50%;
  transform: translateX(-50%);
}
.hero-img-glow {
  position: absolute;
  inset: 10% 5%;
  background: radial-gradient(ellipse at 50% 60%, rgba(67,160,71,.22) 0%, rgba(139,92,246,.14) 55%, transparent 80%);
  filter: blur(48px);
  z-index: 0;
  pointer-events: none;
}
.hero-main-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   SECTION CARDS (Bubble-style)
============================================================ */
.sc-wrap { padding: 32px 0; }

.sec-card {
  border-radius: var(--r-2xl);
  padding: 68px 60px;
  border: 1px solid transparent;
}

.sc-lavender {
  background: rgba(240,238,255,.72);
  border-color: rgba(167,139,250,.14);
}
.sc-pink {
  background: rgba(255,240,248,.72);
  border-color: rgba(233,30,99,.10);
}
.sc-mint {
  background: rgba(240,253,244,.72);
  border-color: rgba(67,160,71,.12);
}

.sc-head {
  text-align: center;
  margin-bottom: 52px;
}

/* How-it-works: 2-col split */
.sc-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 52px;
}

.sc-step-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.sc-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.scs-dot {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}

.scs-title {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text-950);
  margin-bottom: 5px;
  line-height: 1.3;
}
.scs-desc {
  font-size: 13.5px;
  color: var(--text-500);
  line-height: 1.7;
}

.sc-visual {
  position: relative;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sc-foot { text-align: center; }

/* Portfolio horizontal scroll */
.port-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 48px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.port-scroll::-webkit-scrollbar { display: none; }

.port-scroll .port-card {
  flex-shrink: 0;
  width: 440px;
}

.port-card--more {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--text-200);
  background: rgba(255,255,255,.6);
  min-height: 320px;
}
.port-more-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  padding: 24px;
}
.port-more-icon {
  font-size: 36px;
  font-weight: 300;
  color: var(--text-400);
  line-height: 1;
}
.port-more-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-500);
}

/* Features 3-col grid */
.feat-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 52px;
}

/* Feature card mini mockup */
.fc-mockup {
  border-radius: var(--r-lg);
  padding: 20px;
  margin-bottom: 4px;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fc-mockup--green { background: linear-gradient(135deg,rgba(67,160,71,.07),rgba(67,160,71,.16)); }
.fc-mockup--pink  { background: linear-gradient(135deg,rgba(233,30,99,.06),rgba(233,30,99,.14)); }
.fc-mockup--purple{ background: linear-gradient(135deg,rgba(167,139,250,.07),rgba(167,139,250,.16)); }

/* Chat mockup */
.fcm-chat { width: 100%; display: flex; flex-direction: column; gap: 8px; }
.fcm-row { display: flex; align-items: flex-end; gap: 7px; }
.fcm-user-row { justify-content: flex-end; }
.fcm-av {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5E9068, #3A6748);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}
.fcm-bubble {
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 12.5px;
  line-height: 1.45;
  max-width: 82%;
}
.fcm-bubble--user { background: #43A047; color: white; border-radius: 12px 12px 2px 12px; }
.fcm-bubble--ai   { background: white; color: var(--text-700); border-radius: 2px 12px 12px 12px; box-shadow: 0 2px 8px rgba(0,0,0,.08); }
.fcm-progress-bar {
  height: 4px;
  background: rgba(67,160,71,.2);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 4px;
}
.fcm-progress-fill {
  height: 100%;
  width: 65%;
  background: linear-gradient(90deg, #43A047, #66BB6A);
  border-radius: 2px;
  animation: progressAnim 2s ease-in-out infinite alternate;
}
@keyframes progressAnim {
  from { width: 55%; }
  to   { width: 80%; }
}

/* Pricing mockup */
.fcm-pricing { width: 100%; display: flex; flex-direction: column; gap: 8px; }
.fcm-price-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: white;
  border-radius: 10px;
  font-size: 13px;
  color: var(--text-700);
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.fcm-price-item--accent { background: rgba(233,30,99,.06); }
.fcm-check { font-size: 14px; flex-shrink: 0; }
.fcm-price-item span:nth-child(2) { flex: 1; }
.fcm-tag {
  padding: 2px 9px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.fcm-tag--free   { background: rgba(67,160,71,.15); color: #1B5E20; }
.fcm-tag--credit { background: rgba(233,30,99,.14); color: #AD1457; }

/* Status mockup */
.fcm-status { width: 100%; display: flex; flex-direction: column; gap: 8px; }
.fcm-status-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  background: white;
  border-radius: 10px;
  font-size: 12.5px;
  color: var(--text-700);
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.fcm-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.fcm-dot--green { background: #43A047; }
.fcm-dot--pulse {
  background: #43A047;
  box-shadow: 0 0 0 3px rgba(67,160,71,.25);
  animation: pulseDot 2s ease-in-out infinite;
}
.fcm-status-text { flex: 1; }
.fcm-status-badge {
  padding: 2px 9px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  background: rgba(67,160,71,.14);
  color: #1B5E20;
  flex-shrink: 0;
}
.fcm-status-badge--live {
  background: linear-gradient(135deg,#43A047,#66BB6A);
  color: white;
}

/* ============================================================
   SCROLL REVEAL
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s cubic-bezier(.4,0,.2,1), transform .55s cubic-bezier(.4,0,.2,1);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .sc-split { grid-template-columns: 1fr; gap: 40px; }
  .sc-visual { height: 360px; }

  .feat-3 { grid-template-columns: 1fr 1fr; }

  /* faq-inner removed */

  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }

  .hero-center { padding: 72px 0 60px; gap: 22px; }
  .hero-heading-c { font-size: 42px; }
  .hero-body-c { font-size: 16px; }
  .hero-quick { flex-direction: column; border-radius: var(--r-lg); }
  .hq-sep { width: auto; height: 1px; align-self: stretch; }
  .hq-item { padding: 14px 18px; }

  .sec-card { padding: 44px 28px; }
  .sc-wrap { padding: 20px 0; }

  .feat-3 { grid-template-columns: 1fr; }

  .faq-list { max-width: 100%; }

  .footer-grid { grid-template-columns: 1fr; gap: 52px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bot-inner { flex-direction: column; gap: 12px; text-align: center; }

  /* Social icons bumped to 44px to meet iOS/Android touch target guideline */
  .footer-socials { gap: 10px; }
  .footer-soc { width: 44px; height: 44px; border-radius: 12px; }

  .sec-pad { padding: 76px 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-heading-c { font-size: 34px; }
  .footer-links { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .cta-btns a { justify-content: center; }
  .demo-chips { gap: 5px; }
  .demo-chip { font-size: 12px; padding: 4px 10px; }
}

/* ========== Usage Modes Section ========== */
.usage-sec {
  padding: 100px 0 80px;
  background: #ffffff;
}

.usage-head {
  text-align: center;
  margin-bottom: 56px;
}

.usage-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(200,240,210,.75) 0%, rgba(232,248,236,.80) 100%);
  border: 1px solid rgba(67,160,71,.20);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  color: #2E7D32;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.usage-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  color: #111827;
  line-height: 1.15;
  margin: 0 0 14px;
}

.usage-desc {
  font-size: 17px;
  color: #6B7280;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.65;
  white-space: nowrap;
}

.usage-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.usage-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 24px;
  padding: 40px 40px 36px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.06), 0 1px 4px rgba(0,0,0,.04);
  transition: box-shadow .25s, transform .25s;
}
.usage-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.10), 0 2px 8px rgba(0,0,0,.06);
  transform: translateY(-3px);
}

.usage-num {
  position: absolute;
  top: -10px;
  right: 24px;
  font-size: 140px;
  font-weight: 900;
  line-height: 1;
  color: #111827;
  opacity: .04;
  pointer-events: none;
  user-select: none;
}

.usage-ico {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.usage-ico svg { color: #fff; }

.usage-card-title {
  font-size: 20px;
  font-weight: 800;
  color: #111827;
  margin: 0 0 10px;
  line-height: 1.3;
}

.usage-card-desc {
  font-size: 15px;
  color: #6B7280;
  line-height: 1.7;
  margin: 0 0 24px;
}
.usage-card-desc code {
  background: rgba(0,0,0,.06);
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 13px;
  font-family: monospace;
}

.usage-flow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.usage-step {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1.5px solid rgba(0,0,0,.10);
  background: #F9FAFB;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
}
.usage-step svg { flex-shrink: 0; color: #43A047; }

.usage-arr { color: #9CA3AF; flex-shrink: 0; }

.usage-or {
  font-size: 12px;
  font-weight: 700;
  color: #9CA3AF;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 0 4px;
}

/* ========== 6-Feature Grid Section ========== */
.feat6-sec {
  padding: 80px 0 100px;
  background: #F9FAFB;
}

.feat6-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feat6-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 20px;
  padding: 32px 28px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  transition: box-shadow .25s, transform .25s;
}
.feat6-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.10);
  transform: translateY(-3px);
}

.feat6-ico {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.feat6-ico svg { color: #fff; }

.feat6-title {
  font-size: 17px;
  font-weight: 800;
  color: #111827;
  margin: 0 0 8px;
  line-height: 1.3;
}

.feat6-desc {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.7;
  margin: 0 0 20px;
}

.feat6-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.feat6-tag {
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  background: #F3F4F6;
  border-radius: 999px;
  padding: 4px 11px;
  border: 1px solid rgba(0,0,0,.07);
}

/* ========== Responsive: usage + feat6 ========== */
@media (max-width: 900px) {
  .usage-cards { grid-template-columns: 1fr; }
  .feat6-grid { grid-template-columns: repeat(2, 1fr); }
  .usage-desc { white-space: normal; max-width: 560px; }
}
@media (max-width: 540px) {
  .usage-card { padding: 28px 24px 24px; }
  .feat6-grid { grid-template-columns: 1fr; }
  .usage-title, .feat6-sec .usage-title { font-size: 26px; }
}

/* ============================================================
   HERO ILLUSTRATION
============================================================ */
@keyframes hi-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

.hi-scene {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 48px auto 0;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hi-mascot {
  position: absolute;
  bottom: 10px;
  left: 20px;
  width: 200px;
  height: auto;
  z-index: 10;
  pointer-events: none;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.14));
}

.hi-monitor {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hi-screen {
  width: 500px;
  height: 320px;
  background: #1C1C1E;
  border-radius: 14px 14px 0 0;
  padding: 7px;
  box-shadow:
    0 28px 70px rgba(0,0,0,.20),
    0 0 0 1px rgba(0,0,0,.12),
    inset 0 0 0 1px rgba(255,255,255,.06);
  overflow: hidden;
}

.hi-screen-inner {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: white;
}

.hi-stand {
  width: 100px;
  height: 36px;
  background: linear-gradient(to bottom, #2C2C2E, #3A3A3C);
  clip-path: polygon(15% 0%, 85% 0%, 100% 100%, 0% 100%);
}

.hi-base {
  width: 190px;
  height: 10px;
  background: #3A3A3C;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
}

/* Browser chrome inside screen */
.hi-br-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 26px;
  padding: 0 10px;
  background: #F3F4F6;
  border-bottom: 1px solid #E5E7EB;
}

.hi-br-dots { display: flex; gap: 5px; flex-shrink: 0; }
.hi-br-dots span {
  width: 8px; height: 8px; border-radius: 50%;
}
.hi-br-dots span:nth-child(1) { background: #FF5F57; }
.hi-br-dots span:nth-child(2) { background: #FFBD2E; }
.hi-br-dots span:nth-child(3) { background: #28C840; }

.hi-br-addr {
  flex: 1;
  height: 13px;
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 99px;
  max-width: 260px;
  margin: 0 auto;
}

.hi-br-body {
  height: calc(100% - 26px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hi-br-nav {
  display: flex;
  align-items: center;
  padding: 0 12px;
  height: 28px;
  gap: 9px;
  background: #1B5E20;
  flex-shrink: 0;
}

.hi-bar--spacer { flex: 1; }

.hi-bar {
  border-radius: 3px;
  flex-shrink: 0;
}
.hi-bar--logo  { width: 68px; height: 8px; background: rgba(255,255,255,.85); }
.hi-bar--lnk   { width: 26px; height: 6px; background: rgba(255,255,255,.38); }
.hi-bar--btn   { width: 44px; height: 18px; background: white; border-radius: 4px; opacity: .95; }

.hi-br-hero {
  flex: 1;
  background: linear-gradient(150deg, #1a3a2a 0%, #2d5a3a 50%, #1B5E20 100%);
  padding: 16px 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hi-bar--tag   { width: 58px; height: 13px; background: rgba(255,255,255,.18); border-radius: 99px; border: 1px solid rgba(255,255,255,.22); }
.hi-bar--h1    { width: 170px; height: 13px; background: rgba(255,255,255,.90); margin-top: 2px; }
.hi-bar--h1b   { width: 130px; height: 13px; background: rgba(255,255,255,.72); }
.hi-bar--sub   { width: 200px; height: 6px; background: rgba(255,255,255,.42); margin-top: 3px; }
.hi-bar--subb  { width: 155px; }

.hi-br-btns {
  display: flex;
  gap: 7px;
  margin-top: 8px;
}
.hi-bar--cta   { width: 70px; height: 22px; background: white; border-radius: 5px; }
.hi-bar--ghost { width: 78px; height: 22px; background: transparent; border-radius: 5px; border: 1.5px solid rgba(255,255,255,.50); }

.hi-br-cards {
  display: flex;
  gap: 6px;
  padding: 8px 12px 10px;
  background: white;
  flex-shrink: 0;
}

.hi-br-card {
  flex: 1;
  border-radius: 8px;
  border: 1px solid #F3F4F6;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-bottom: 7px;
}

.hi-bc-img { height: 40px; }
.hi-bc-img--1 { background: linear-gradient(135deg,#A5D6A7,#43A047); }
.hi-bc-img--2 { background: linear-gradient(135deg,#FFCC80,#F57C00); }
.hi-bc-img--3 { background: linear-gradient(135deg,#F48FB1,#E91E63); }

.hi-bc-line {
  height: 5px;
  background: #E5E7EB;
  border-radius: 3px;
  margin: 0 7px;
}
.hi-bc-line--sm { width: 55%; }

/* Floating badges */
.hi-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.90);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 14px;
  padding: 10px 16px 10px 10px;
  box-shadow: 0 6px 24px rgba(0,0,0,.10), 0 1px 4px rgba(0,0,0,.06);
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  z-index: 5;
}

.hi-bico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

.hi-b1 { top: 36px;  left: 20px; }
.hi-b2 { top: 36px;  right: 20px; }
.hi-b3 { top: 205px; left: 8px; }
.hi-b4 { top: 205px; right: 8px; }
.hi-b5 { bottom: 72px; left: 30px; }
.hi-b6 { bottom: 72px; right: 30px; }

.hi-float-1 { animation: hi-float 3.2s ease-in-out infinite; }
.hi-float-2 { animation: hi-float 3.5s ease-in-out infinite .40s; }
.hi-float-3 { animation: hi-float 3.8s ease-in-out infinite .80s; }
.hi-float-4 { animation: hi-float 3.2s ease-in-out infinite 1.20s; }
.hi-float-5 { animation: hi-float 3.6s ease-in-out infinite .60s; }
.hi-float-6 { animation: hi-float 3.4s ease-in-out infinite 1.00s; }

@media (max-width: 960px) {
  .hi-scene { height: auto; padding: 160px 0 100px; }
  .hi-monitor { width: 100%; max-width: 480px; }
  .hi-screen { width: 100%; }
  .hi-b1, .hi-b2 { top: 60px; }
  .hi-b3, .hi-b4 { display: none; }
  .hi-b5 { bottom: 20px; left: 10px; }
  .hi-b6 { bottom: 20px; right: 10px; }
  .hi-mascot { width: 140px; bottom: -10px; left: 5px; }
}

@media (max-width: 600px) {
  .hi-scene { padding: 120px 0 80px; }
  .hi-badge { font-size: 11.5px; padding: 8px 12px 8px 8px; }
  .hi-bico { width: 34px; height: 34px; border-radius: 8px; }
  .hi-b1 { top: 30px; left: 4px; }
  .hi-b2 { top: 30px; right: 4px; }
  .hi-mascot { display: none; }
}

/* ============================================================
   PRICING SECTION
============================================================ */
.pricing-sec { background: #F9FAFB; }

.pricing-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 52px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,.07);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: transform .25s, box-shadow .25s;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,.10);
}

.pricing-card--featured {
  border-color: #43A047;
  box-shadow: 0 4px 24px rgba(67,160,71,.14);
}

.pricing-card--featured:hover {
  box-shadow: 0 14px 40px rgba(67,160,71,.20);
}

.pricing-badge-popular {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #43A047, #1B5E20);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 3px 14px;
  border-radius: 99px;
  white-space: nowrap;
}

.pricing-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,.12);
}

.pricing-tier {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #6B7280;
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 26px;
  font-weight: 800;
  color: #111827;
  line-height: 1.1;
}

.pricing-unit {
  font-size: 14px;
  font-weight: 500;
  color: #6B7280;
}

.pricing-price-sub {
  font-size: 12px;
  color: #9CA3AF;
  margin-top: 4px;
  margin-bottom: 20px;
}

.pricing-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: #374151;
  line-height: 1.4;
}

.pricing-list li svg { flex-shrink: 0; margin-top: 1px; }

.pricing-domain {
  font-family: 'Courier New', monospace;
  font-size: 11.5px;
  background: #F3F4F6;
  padding: 1px 5px;
  border-radius: 4px;
  color: #374151;
}

.pricing-cta {
  display: block;
  text-align: center;
  padding: 11px 16px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 22px;
  transition: opacity .2s, transform .2s;
}

.pricing-cta:hover { opacity: .88; transform: translateY(-1px); }

.pricing-cta--outline {
  border: 1.5px solid #43A047;
  color: #2E7D32;
  background: rgba(67,160,71,.04);
}

.pricing-cta--solid {
  background: linear-gradient(135deg, #43A047, #1B5E20);
  color: white;
  border: none;
  box-shadow: 0 3px 12px rgba(27,94,32,.28);
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 24px 20px 20px; }
}
