/* ── Variables ─────────────────────────────────────────────────── */
:root {
  --orange:  #FF6B35;
  --orange-d:#E55A25;
  --dark:    #111827;
  --light:   #F9FAFB;
  --muted:   #6B7280;
  --border:  #E5E7EB;
  --white:   #ffffff;
  --radius:  12px;
}

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: var(--dark); background: var(--white); font-size: 15px; line-height: 1.6; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* ── Accessibility ─────────────────────────────────────────────── */
.skip-link { position: absolute; top: -100px; left: 0; background: var(--orange); color: #fff; padding: 8px 16px; z-index: 9999; border-radius: 0 0 8px 0; }
.skip-link:focus { top: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ── Container ─────────────────────────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 11px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid var(--orange);
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn:hover { background: var(--orange-d); border-color: var(--orange-d); }
.btn.outline { background: transparent; color: var(--orange); }
.btn.outline:hover { background: var(--orange); color: #fff; }

/* ── Section base ──────────────────────────────────────────────── */
section { padding: 72px 0; }

/* ── Topbar ────────────────────────────────────────────────────── */
.topbar {
  background: var(--dark);
  color: #d1d5db;
  font-size: 13px;
  padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.topbar a { color: var(--orange); font-weight: 600; }

/* ── Header / Nav ──────────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 64px;
}
.logo-img { height: 38px; width: auto; }
.menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.menu a {
  padding: 6px 14px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  transition: background .15s, color .15s;
}
.menu a:hover { background: #FFF0EB; color: var(--orange); }
header > .container > .btn { margin-left: 8px; white-space: nowrap; }

/* Burger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ──────────────────────────────────────────────────────── */
.hero { background: linear-gradient(135deg, #fff8f5 0%, #fff 60%); padding: 80px 0 64px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.badge {
  display: inline-block;
  background: #FFF0EB;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 18px;
  letter-spacing: .3px;
}
.hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
  color: var(--dark);
}
.hero h1 span { color: var(--orange); }
.hero > .container > .hero-grid > div > p { color: var(--muted); font-size: 15px; margin-bottom: 28px; max-width: 480px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.checks { display: flex; flex-wrap: wrap; gap: 10px 20px; }
.checks div { font-size: 13px; color: #374151; font-weight: 500; }
.checks div::before { content: ''; }

/* Dashboard mockup */
.dashboard {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
  overflow: hidden;
  border: 1px solid var(--border);
}
.dash-head {
  background: #f3f4f6;
  padding: 12px 16px;
  display: flex;
  gap: 7px;
  align-items: center;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d5db;
}
.dot:nth-child(1) { background: #ef4444; }
.dot:nth-child(2) { background: #f59e0b; }
.dot:nth-child(3) { background: #22c55e; }
.dash-inner { padding: 20px; }
.dash-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.mini-title { font-size: 13px; font-weight: 700; color: var(--dark); }
.dash-top p { font-size: 12px; color: var(--muted); margin-top: 2px; }
.score {
  font-size: 28px;
  font-weight: 800;
  color: var(--orange);
  background: #FFF0EB;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.bars { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.bars > div strong { font-size: 12px; color: #374151; display: block; margin-bottom: 5px; }
.bar { height: 8px; background: #f3f4f6; border-radius: 99px; overflow: hidden; }
.bar span { display: block; height: 100%; background: var(--orange); border-radius: 99px; }
.dash-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.dash-card {
  background: #f9fafb;
  border-radius: 10px;
  padding: 12px 10px;
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.4;
}
.dash-card strong { display: block; font-size: 16px; font-weight: 800; color: var(--dark); margin-bottom: 2px; }

/* ── AI Answer box ─────────────────────────────────────────────── */
.ai-answer {
  background: linear-gradient(135deg, #f0f4ff, #fff8f5);
  border: 1px solid #e0e7ff;
  border-radius: var(--radius);
  padding: 20px 24px;
}
.ai-answer .label {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}
.ai-answer p { font-size: 14px; color: #374151; line-height: 1.7; }

/* ── Image split ───────────────────────────────────────────────── */
.img-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.img-split.reverse { direction: rtl; }
.img-split.reverse > * { direction: ltr; }
.img-feature img {
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,.10);
  width: 100%;
  object-fit: cover;
}
.img-text h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 800; margin-bottom: 16px; line-height: 1.3; }
.img-text p  { color: var(--muted); margin-bottom: 16px; }
.img-text ul { display: flex; flex-direction: column; gap: 8px; }
.img-text ul li { font-size: 14px; color: #374151; padding-left: 20px; position: relative; }
.img-text ul li::before { content: '✓'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }

/* ── Section title ─────────────────────────────────────────────── */
.title { text-align: center; margin-bottom: 48px; }
.title h2 { font-size: clamp(24px, 3.5vw, 36px); font-weight: 800; margin-bottom: 10px; }
.title h2 span { color: var(--orange); }
.title p  { color: var(--muted); font-size: 15px; max-width: 520px; margin: 0 auto; }

/* ── How It Works ──────────────────────────────────────────────── */
#how-it-works { background: var(--light); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  text-align: center;
}
.num {
  width: 44px;
  height: 44px;
  background: var(--orange);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.step p  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── Feature cards ─────────────────────────────────────────────── */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: 0 8px 32px rgba(255,107,53,.12); transform: translateY(-3px); }
.icon { font-size: 32px; margin-bottom: 14px; }
.card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.card p  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── Results / Stats ───────────────────────────────────────────── */
.results { background: var(--dark); color: #fff; }
.results .title h2 { color: #fff; }
.results .title p  { color: #9ca3af; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat h3 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: var(--orange); margin-bottom: 6px; }
.stat p  { font-size: 14px; color: #9ca3af; }

/* ── Before / After ────────────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.panel { border-radius: var(--radius); padding: 32px; }
.panel h3 { font-size: 18px; font-weight: 700; margin-bottom: 20px; }
.panel ul { display: flex; flex-direction: column; gap: 12px; }
.panel ul li { font-size: 14px; font-weight: 500; }
.before { background: #fff1f0; border: 1px solid #fca5a5; }
.before h3 { color: #dc2626; }
.after  { background: #f0fdf4; border: 1px solid #86efac; }
.after  h3 { color: #16a34a; }

/* ── Industries chip grid ──────────────────────────────────────── */
.chip-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.chip-grid span {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  transition: background .15s, border-color .15s, color .15s;
}
.chip-grid span:hover { background: #FFF0EB; border-color: var(--orange); color: var(--orange); }

/* ── Testimonials ──────────────────────────────────────────────── */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
}
.stars { color: #f59e0b; font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial p { font-size: 14px; color: #374151; line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.who { font-size: 13px; font-weight: 600; color: var(--dark); }
.who span { display: block; font-weight: 400; color: var(--muted); font-size: 12px; margin-top: 2px; }

/* ── Pricing ───────────────────────────────────────────────────── */
.pricing { background: var(--light); }
.pricing-card {
  max-width: 420px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  border: 2px solid var(--orange);
  padding: 40px 36px;
  text-align: center;
  box-shadow: 0 16px 48px rgba(255,107,53,.15);
}
.pricing-card h2 { font-size: 20px; font-weight: 800; color: var(--orange); margin-bottom: 16px; }
.price { font-size: 56px; font-weight: 900; color: var(--dark); line-height: 1; }
.pricing-card > p { color: var(--muted); font-size: 14px; margin: 4px 0 24px; }
.pricing-card ul { text-align: left; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-card ul li { font-size: 14px; color: #374151; padding-left: 24px; position: relative; }
.pricing-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }
.pricing-card .btn { width: 100%; text-align: center; font-size: 15px; padding: 14px; }

/* Compare table */
.table-wrap { overflow-x: auto; }
.compare { width: 100%; border-collapse: collapse; font-size: 14px; }
.compare caption { caption-side: top; }
.compare th, .compare td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); }
.compare th { background: var(--dark); color: #fff; font-size: 13px; font-weight: 700; }
.compare th:first-child { border-radius: 8px 0 0 0; }
.compare th:last-child  { border-radius: 0 8px 0 0; }
.compare tr:last-child td { border-bottom: none; }
.compare tr:nth-child(even) td { background: var(--light); }
.compare td:nth-child(3) { color: var(--orange); font-weight: 600; }

/* ── Gallery ───────────────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.g-item img { border-radius: var(--radius); width: 100%; height: 200px; object-fit: cover; transition: transform .3s; }
.g-item:hover img { transform: scale(1.04); }
.g-item { overflow: hidden; border-radius: var(--radius); }

/* ── FAQ ───────────────────────────────────────────────────────── */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.faq-item h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.faq-item p  { font-size: 14px; color: var(--muted); line-height: 1.7; }
.faq-item p a { color: var(--orange); font-weight: 600; }

/* ── Footer ────────────────────────────────────────────────────── */
footer { background: var(--dark); color: #9ca3af; padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand { margin-bottom: 16px; }
.footer-brand img { height: 36px; filter: brightness(0) invert(1); }
.footer-grid > div > p { font-size: 13px; line-height: 1.7; margin-bottom: 8px; }
.footer-grid > div h3 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.footer-grid > div a {
  display: block;
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 8px;
  transition: color .15s;
}
.footer-grid > div a:hover { color: var(--orange); }
.copy {
  border-top: 1px solid #1f2937;
  padding: 18px 0;
  font-size: 13px;
  color: #6b7280;
}

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .steps       { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 48px 0; }

  /* Nav */
  .nav-toggle { display: flex; }
  .menu {
    display: none;
    position: fixed;
    inset: 64px 0 0 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
    gap: 4px;
    border-top: 1px solid var(--border);
    z-index: 199;
  }
  .menu.open { display: flex; }
  .menu a { font-size: 16px; padding: 10px 14px; width: 100%; }
  header > .container > .btn { display: none; }

  /* Grids → single column */
  .hero-grid        { grid-template-columns: 1fr; }
  .img-split        { grid-template-columns: 1fr; gap: 32px; }
  .img-split.reverse{ direction: ltr; }
  .steps            { grid-template-columns: 1fr 1fr; }
  .cards            { grid-template-columns: 1fr 1fr; }
  .stats            { grid-template-columns: repeat(2, 1fr); }
  .split            { grid-template-columns: 1fr; }
  .testimonials     { grid-template-columns: 1fr; }
  .gallery-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-grid      { grid-template-columns: 1fr; gap: 32px; }
  .dash-cards       { grid-template-columns: repeat(2, 1fr); }
  .hero-actions     { flex-direction: column; }
  .hero-actions .btn{ text-align: center; }
}

@media (max-width: 480px) {
  .steps     { grid-template-columns: 1fr; }
  .cards     { grid-template-columns: 1fr; }
  .stats     { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 28px 20px; }
  .price     { font-size: 44px; }
}
