/* ── TOKENS ── */
:root {
  --primary:   #bf4f00;
  --primary-2: #e86f00;
  --mint:      #ffd2a8;
  --surface:   #fff8f1;
  --surface-2: #fff0df;
  --line:      #ffd8b8;
  --ink:       #2d1605;
  --muted:     #6d5a4a;
  --soft:      0 14px 34px rgba(45,22,5,.08);
  --danger:    #b3261e;
  --green:     #2e7d32;
  --green-bg:  rgba(46,125,50,.10);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--surface);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}
button, a { -webkit-tap-highlight-color: transparent; }

/* ── NAV ── */
.lp-nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; gap: 20px;
  height: 64px; padding: 0 40px;
  background: rgba(255,248,241,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--primary);
  font-weight: 800; font-size: 18px; white-space: nowrap;
}
.brand-mark {
  display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--primary); overflow: hidden; flex-shrink: 0;
}
.brand-mark img { width: 28px; height: 28px; object-fit: contain; filter: brightness(0) invert(1); }
.brand small { display: block; font-family: "Roboto Mono",monospace; font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); line-height: 1; }
.brand strong { display: block; line-height: 1.1; }
.nav-spacer { flex: 1; }
.btn-outline-brand {
  padding: 8px 18px; border-radius: 8px;
  border: 1.5px solid var(--line); background: transparent;
  color: var(--primary); font-size: 13px; font-weight: 700;
  cursor: pointer; font-family: inherit; transition: border-color .18s, background .18s;
  text-decoration: none;
}
.btn-outline-brand:hover { background: var(--surface-2); border-color: var(--primary-2); }
.btn-brand-nav {
  padding: 8px 20px; border-radius: 8px;
  background: var(--primary); color: #fff;
  font-size: 13px; font-weight: 700; border: none;
  cursor: pointer; font-family: inherit;
  transition: background .18s; text-decoration: none;
}
.btn-brand-nav:hover { background: var(--primary-2); color: #fff; }

/* ── HERO BAND ── */
.demo-hero {
  background:
    linear-gradient(120deg, rgba(191,79,0,.90), rgba(232,111,0,.80)),
    url("https://lh3.googleusercontent.com/aida-public/AB6AXuCWEDAKTdLtxZhhHotrwa8SfoMr5_2Sn3_MixokcGKrCusMOGqrm5xxRrPEQBcwZCOQvcf2yONDshEz4BNubgC3cBLiSrYidicAyLnCK7RpqaDmOylP8-a8blgbgQdm1NbhoUgda2lD0ML0RR2M93wGfB8xp3lNP1andBbbe3iADDJwokjTwGzyuJlcEMQHlJFLq2_v21pihPK63Yy8FgocGuiSD8iXEIl-ZjlLjT2kQbksC5ijXqEXwsjwRjPEsPzLI8Z2iGNJmE6b") center/cover fixed;
  padding: 64px 40px 56px;
  text-align: center;
  color: #fff;
}
.demo-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px; border-radius: 999px;
  background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.32);
  font-family: "Roboto Mono",monospace; font-size: 10px;
  font-weight: 700; letter-spacing: .11em; text-transform: uppercase;
  margin-bottom: 22px;
}
.demo-hero-badge::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: #fff; box-shadow: 0 0 8px rgba(255,255,255,.8);
  animation: blink 2s ease infinite;
}
@keyframes blink { 0%,100%{opacity:1}50%{opacity:.35} }
.demo-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800; line-height: 1.07; letter-spacing: -1px;
  max-width: 640px; margin: 0 auto 16px;
}
.demo-hero p {
  font-size: 1rem; color: rgba(255,255,255,.88);
  max-width: 500px; margin: 0 auto; line-height: 1.7;
}

/* ── MAIN CONTENT ── */
.demo-main {
  max-width: 1160px; margin: 0 auto;
  padding: 72px 40px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}

/* ── LEFT INFO ── */
.demo-info {}

.info-eyebrow {
  font-family: "Roboto Mono",monospace; font-size: 10px; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--primary-2); margin-bottom: 10px;
}
.demo-info h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800; color: var(--primary);
  letter-spacing: -.5px; line-height: 1.1; margin-bottom: 14px;
}
.demo-info > p {
  font-size: .95rem; color: var(--muted); line-height: 1.75; max-width: 480px; margin-bottom: 40px;
}

/* What you'll see */
.demo-steps { display: flex; flex-direction: column; gap: 0; margin-bottom: 48px; }
.demo-step {
  display: flex; gap: 20px; padding: 22px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.demo-step:last-child { border-bottom: none; }
.step-num {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: "Roboto Mono",monospace; font-size: 12px; font-weight: 700;
  margin-top: 2px;
}
.step-title { font-size: .93rem; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
.step-desc  { font-size: .84rem; color: var(--muted); line-height: 1.6; }

/* Modules covered */
.modules-covered { margin-bottom: 48px; }
.modules-covered h3 {
  font-family: "Roboto Mono",monospace; font-size: 9px; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
}
.module-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.module-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  font-size: .8rem; font-weight: 600; color: var(--ink);
  box-shadow: var(--soft); transition: border-color .18s, transform .18s;
}
.module-pill:hover { border-color: var(--primary-2); transform: translateY(-1px); }
.module-pill i { color: var(--primary-2); font-size: 14px; }

/* Social proof */
.social-proof {
  background: #fff; border: 1px solid var(--line);
  border-radius: 12px; padding: 24px;
  box-shadow: var(--soft);
}
.proof-heading {
  font-family: "Roboto Mono",monospace; font-size: 9px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 18px;
}
.proof-testimonial {
  font-size: .88rem; color: var(--muted); line-height: 1.7;
  font-style: italic; margin-bottom: 16px;
  padding-bottom: 16px; border-bottom: 1px solid var(--line);
}
.proof-author { display: flex; align-items: center; gap: 12px; }
.proof-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .8rem; flex-shrink: 0;
}
.proof-name { font-size: .83rem; font-weight: 800; color: var(--ink); line-height: 1.2; }
.proof-role { font-family: "Roboto Mono",monospace; font-size: 8px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }
.proof-stars { color: var(--primary-2); font-size: .75rem; margin-top: 14px; letter-spacing: 2px; }

/* ── FORM CARD ── */
.demo-form-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 36px;
  box-shadow: 0 20px 52px rgba(45,22,5,.10);
  position: sticky; top: 84px;
}
.demo-form-card-header { margin-bottom: 28px; }
.demo-form-card-header .eyebrow {
  font-family: "Roboto Mono",monospace; font-size: 10px; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--primary-2); margin-bottom: 8px;
}
.demo-form-card-header h2 {
  font-size: 1.4rem; font-weight: 800; color: var(--ink);
  line-height: 1.15; margin-bottom: 6px; letter-spacing: -.3px;
}
.demo-form-card-header p { font-size: .82rem; color: var(--muted); line-height: 1.55; }

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: .8rem; font-weight: 700;
  color: var(--ink); margin-bottom: 6px;
}
.form-control-erp {
  width: 100%; padding: 10px 13px;
  border: 1.5px solid var(--line); border-radius: 8px;
  background: var(--surface); color: var(--ink);
  font-family: inherit; font-size: .88rem;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-control-erp::placeholder { color: #b8a898; }
.form-control-erp:focus {
  border-color: var(--primary-2);
  box-shadow: 0 0 0 3px rgba(232,111,0,.12);
  background: #fff;
}
select.form-control-erp { cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236d5a4a' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  padding-right: 34px;
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.form-group textarea.form-control-erp { resize: vertical; min-height: 80px; }

.btn-brand-full {
  width: 100%; padding: 13px;
  border-radius: 8px; border: none;
  background: var(--primary); color: #fff;
  font-size: .95rem; font-weight: 800;
  font-family: inherit; cursor: pointer;
  transition: background .18s, transform .15s, box-shadow .18s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 6px 20px rgba(191,79,0,.28);
  margin-top: 6px;
}
.btn-brand-full:hover { background: var(--primary-2); transform: translateY(-1px); box-shadow: 0 10px 28px rgba(191,79,0,.36); }
.btn-brand-full:active { transform: translateY(0); }

.form-privacy {
  font-size: .75rem; color: var(--muted); text-align: center; margin-top: 14px; line-height: 1.5;
}
.form-privacy a { color: var(--primary); text-decoration: none; font-weight: 600; }

.form-perks { display: flex; flex-direction: column; gap: 8px; margin: 18px 0 0; }
.form-perk {
  display: flex; align-items: center; gap: 9px;
  font-size: .78rem; color: var(--muted);
}
.form-perk::before {
  content: '✓';
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
  background: var(--green-bg); color: var(--green);
  font-size: .65rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}

/* ── SUCCESS STATE ── */
.success-state {
  display: none; text-align: center; padding: 20px 0;
}
.success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--green-bg); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; margin: 0 auto 20px;
  border: 2px solid rgba(46,125,50,.2);
}
.success-state h3 { font-size: 1.25rem; font-weight: 800; color: var(--ink); margin-bottom: 10px; }
.success-state p { font-size: .88rem; color: var(--muted); line-height: 1.65; max-width: 280px; margin: 0 auto 24px; }
.btn-outline-erp {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 8px;
  border: 1.5px solid var(--line); background: transparent;
  color: var(--primary); font-size: .88rem; font-weight: 700;
  cursor: pointer; font-family: inherit; text-decoration: none;
  transition: background .18s, border-color .18s;
}
.btn-outline-erp:hover { background: var(--surface-2); border-color: var(--primary-2); }

/* ── TRUST SECTION ── */
.trust-section {
  background: var(--surface-2);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 56px 40px;
}
.trust-inner { max-width: 1160px; margin: 0 auto; }
.trust-eyebrow {
  font-family: "Roboto Mono",monospace; font-size: 10px; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--primary-2); text-align: center; margin-bottom: 10px;
}
.trust-inner h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800; color: var(--primary); text-align: center;
  letter-spacing: -.4px; margin-bottom: 44px;
}
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: 10px; padding: 24px;
  box-shadow: var(--soft); text-align: center;
}
.trust-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: rgba(232,111,0,.1); color: var(--primary-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin: 0 auto 14px;
}
.trust-num { font-size: 1.7rem; font-weight: 800; color: var(--primary); line-height: 1; }
.trust-label { font-size: .82rem; color: var(--muted); margin-top: 4px; line-height: 1.45; }

/* ── FAQ ── */
.faq-section { padding: 72px 40px; }
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-eyebrow {
  font-family: "Roboto Mono",monospace; font-size: 10px; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--primary-2); text-align: center; margin-bottom: 10px;
}
.faq-inner h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800; color: var(--primary); text-align: center;
  letter-spacing: -.4px; margin-bottom: 40px;
}
.faq-item {
  border: 1px solid var(--line); border-radius: 10px;
  margin-bottom: 12px; background: #fff;
  overflow: hidden;
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; cursor: pointer;
  font-size: .93rem; font-weight: 700; color: var(--ink);
  list-style: none; user-select: none;
  transition: background .18s;
}
.faq-q:hover { background: var(--surface-2); }
.faq-q .faq-chevron { font-size: 18px; color: var(--primary-2); transition: transform .25s; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  display: none; padding: 0 22px 18px;
  font-size: .86rem; color: var(--muted); line-height: 1.7;
  border-top: 1px solid var(--line);
}
.faq-item.open .faq-a { display: block; }

/* ── FOOTER ── */
.lp-footer {
  background: #fff; border-top: 1px solid var(--line);
  padding: 28px 40px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.lp-footer p { margin: 0; font-size: .75rem; color: var(--muted); }
.footer-links { display: flex; gap: 20px; }
.footer-links a {
  font-family: "Roboto Mono",monospace; font-size: .65rem;
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color .18s;
}
.footer-links a:hover { color: var(--primary); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .demo-main { grid-template-columns: 1fr; gap: 48px; }
  .demo-form-card { position: static; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .demo-hero { padding: 48px 20px 40px; }
  .demo-main { padding: 48px 20px; }
  .trust-section, .faq-section { padding: 48px 20px; }
  .lp-nav { padding: 0 20px; }
  .lp-footer { padding: 20px; flex-direction: column; text-align: center; }
  .form-row-2 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
}
