:root {
  --bg: #f5f6f1;
  --surface: #ffffff;
  --ink: #151815;
  --muted: #667064;
  --line: #d8dfd2;
  --dark: #151815;
  --dark-2: #2b312c;
  --accent: #d69035;
  --accent-2: #8a5a16;
  --soft: #eef4ed;
  --shadow: 0 22px 70px rgba(21, 24, 21, .12);
  --radius: 8px;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
.container { width: min(1140px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px max(16px, calc((100vw - 1140px) / 2));
  background: rgba(245, 246, 241, .92);
  border-bottom: 1px solid rgba(216, 223, 210, .88);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; color: var(--dark); letter-spacing: 0; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: #fff;
  background: var(--dark);
  box-shadow: 0 12px 28px rgba(21, 24, 21, .18);
}
.site-nav { display: flex; justify-content: center; gap: 18px; color: #5f5a50; font-size: 14px; font-weight: 750; }
.site-nav a { padding: 8px 2px; }
.site-nav a:hover { color: var(--accent-2); }
.nav-toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { color: #fff; background: var(--dark); box-shadow: 0 14px 34px rgba(21, 24, 21, .18); }
.btn-primary:hover { background: var(--dark-2); }
.btn-secondary { color: var(--dark); background: #fff; border-color: var(--line); }
.btn-ghost { color: var(--accent-2); background: var(--soft); border-color: transparent; }
.btn-large { min-height: 50px; padding: 13px 20px; }
.btn .icon { width: 17px; height: 17px; color: currentColor; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 44px 0 68px;
  background: linear-gradient(135deg, #fffaf1 0%, #f5f6f1 48%, #eef4ed 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(21, 24, 21, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(21, 24, 21, .055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}
.hero-grid { position: relative; display: grid; gap: 30px; }
.hero-copy {
  display: grid;
  justify-items: center;
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}
.hero-showcase {
  display: grid;
  grid-template-columns: minmax(0, 920px);
  justify-content: center;
  gap: 34px;
  align-items: start;
}
.pill, .eyebrow {
  margin: 0 0 14px;
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}
h1, h2, h3, p { margin-top: 0; }
.hero-copy h1 {
  max-width: 860px;
  margin-bottom: 18px;
  color: var(--dark);
  font-size: clamp(36px, 5.5vw, 62px);
  line-height: 1.03;
  letter-spacing: 0;
}
h2 { color: var(--dark); font-size: clamp(31px, 4.8vw, 56px); line-height: 1.08; letter-spacing: 0; margin-bottom: 16px; }
h3 { color: var(--dark); font-size: 21px; line-height: 1.25; margin-bottom: 8px; }
.lead { max-width: 700px; color: #5f5a50; font-size: 17px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; color: #5f5a50; font-size: 14px; font-weight: 850; }
.hero-proof span { display: inline-flex; align-items: center; gap: 7px; padding: 7px 10px; border: 1px solid rgba(214, 144, 53, .22); border-radius: 999px; background: rgba(255,255,255,.78); }
.hero-proof .icon { width: 16px; height: 16px; color: var(--accent-2); }

.hero-mockup {
  min-height: 0;
  padding: 16px;
  border: 1px solid #242824;
  border-radius: 28px;
  background: #111511;
  box-shadow: var(--shadow);
}
.browser-bar { display: flex; gap: 7px; padding: 0 0 14px 4px; }
.browser-bar span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.35); }
.preview-image {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border-radius: 20px;
  background: #111511;
}
.preview-image img { width: 100%; height: 430px; min-height: 430px; object-fit: cover; opacity: .92; }
.preview-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,21,17,.92), rgba(17,21,17,.16), transparent);
}
.preview-image div {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 1;
  padding: 28px;
  color: #fff;
}
.preview-image p { display: inline-flex; margin-bottom: 12px; padding: 6px 10px; border-radius: 999px; background: rgba(255,255,255,.16); font-size: 13px; font-weight: 800; }
.preview-image strong { display: block; max-width: 520px; overflow-wrap: anywhere; font-size: clamp(24px, 3vw, 34px); line-height: 1.08; }
.preview-image span { display: block; margin-top: 10px; color: rgba(255,255,255,.78); }
.preview-demo-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #151815;
  background: #fff;
  font-size: 14px;
  font-weight: 950;
}
.preview-demo-link .icon { width: 16px; height: 16px; color: currentColor; }
.preview-demo-link:hover { background: #f0bd68; }

.section { padding: 86px 0; }
.section-heading { max-width: 820px; margin: 0 auto 34px; text-align: center; }
.section-heading p:last-child, .form-grid p, .site-footer p, .pricing-shell > div > p { color: var(--muted); }
.split-section { background: #fff; }
.steps, .examples-grid { display: grid; gap: 18px; }
.steps { grid-template-columns: repeat(4, 1fr); }
.examples-grid { grid-template-columns: repeat(3, 1fr); }
.step-card, .example-card, .price-card, .lead-form, .faq-item, .seo-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(21, 24, 21, .06);
}
.step-card, .example-card, .price-card, .seo-card { padding: 22px; }
.step-number { display: inline-flex; margin-bottom: 18px; color: var(--accent-2); font-weight: 950; }
.step-card p, .example-card p, .seo-card p { color: var(--muted); margin-bottom: 0; }
.icon { width: 22px; height: 22px; flex: 0 0 22px; color: var(--accent-2); }

.example-card { display: flex; flex-direction: column; gap: 18px; min-height: 100%; }
.example-card .btn { margin-top: auto; }
.phone-frame {
  padding: 8px;
  border: 1px solid #242824;
  border-radius: 28px;
  background: #151815;
  box-shadow: 0 22px 50px rgba(21,24,21,.18);
}
.phone-frame span { display: block; width: 44px; height: 5px; margin: 0 auto 8px; border-radius: 999px; background: rgba(255,255,255,.22); }
.phone-frame img { width: 100%; aspect-ratio: 16 / 11; height: auto; border-radius: 20px; object-fit: cover; border: 1px solid rgba(255,255,255,.12); }
.url { color: var(--accent-2) !important; font-weight: 850; overflow-wrap: anywhere; }
.badges { display: flex; flex-wrap: wrap; gap: 8px; }
.badge { padding: 6px 9px; border-radius: 999px; color: #5d3a09; background: var(--soft); font-size: 12px; font-weight: 850; }

.seo-section { color: #fff; background: linear-gradient(135deg, #151815, #2b312c); }
.seo-section h2, .seo-section .eyebrow { color: #fff; }
.seo-grid, .faq-grid, .pricing-shell, .final-cta-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 34px;
  align-items: start;
}
.seo-card-list { display: grid; gap: 14px; }
.seo-card { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); box-shadow: none; }
.seo-card h3 { color: #fff; }
.seo-card p { color: rgba(255,255,255,.78); }

.pricing-shell { align-items: center; }
.price-card { position: relative; display: flex; flex-direction: column; min-height: 100%; }
.price-card.is-featured { border-color: rgba(214,144,53,.45); box-shadow: 0 22px 70px rgba(214,144,53,.16); }
.price-badge { position: absolute; right: 18px; top: 18px; padding: 7px 10px; border-radius: 999px; color: #151815; background: #f0bd68; font-size: 12px; font-weight: 950; }
.price { color: var(--accent-2); font-size: 42px; font-weight: 950; }
.price small { font-size: 15px; color: var(--muted); }
.price-card ul { display: grid; gap: 12px; padding: 0; margin: 0 0 24px; list-style: none; }
.price-card li { display: flex; gap: 10px; color: var(--muted); }
.price-card .btn { margin-top: auto; }

.lead-form { padding: 24px; }
.hero-form { width: min(100%, 760px); margin: 0 auto; background: rgba(255,255,255,.92); backdrop-filter: blur(14px); }
.lead-form label { display: grid; gap: 7px; margin-bottom: 14px; color: var(--dark); font-size: 14px; font-weight: 850; }
.lead-form label span { color: var(--muted); font-weight: 700; }
.lead-form input, .lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfcf8;
  font: inherit;
}
.lead-form input:focus, .lead-form textarea:focus { outline: 3px solid rgba(214, 144, 53, .18); border-color: var(--accent); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hp-field { position: absolute; left: -9999px; opacity: 0; }
.form-alert { padding: 12px 14px; border-radius: 12px; font-weight: 850; }
.form-alert.success { color: #315b19; background: #e8f5d7; }
.form-alert.error { color: #8a1f1f; background: #ffe5e5; }

.faq-list { display: grid; gap: 12px; }
.faq-item { padding: 18px 20px; }
.faq-item summary { cursor: pointer; color: var(--dark); font-weight: 900; }
.faq-item p { color: var(--muted); margin: 12px 0 0; }
.final-cta { background: #fff; }
.final-cta-grid { align-items: end; padding: 40px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 12px 36px rgba(21,24,21,.06); }
.final-cta-grid h2 { max-width: 760px; font-size: clamp(28px, 3.8vw, 44px); line-height: 1.12; }

.site-footer { padding: 36px 0; color: #d9d1c3; background: var(--dark); }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
.site-footer .brand { color: #fff; }
.site-footer p { max-width: 520px; margin: 14px 0 0; color: #d9d1c3; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 16px; font-size: 14px; font-weight: 800; }
.site-footer a:hover { color: #fff; }

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 50;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  color: #fff;
  background: #25d366;
  box-shadow: 0 18px 40px rgba(37,211,102,.34);
  border: 4px solid #fff;
}
.floating-whatsapp .icon { color: currentColor; width: 28px; height: 28px; }
.mobile-sticky-cta {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 45;
  display: none;
  padding: 15px 18px;
  color: #fff;
  background: var(--dark);
  text-align: center;
  font-weight: 950;
  box-shadow: 0 -14px 32px rgba(21,24,21,.2);
}

@media (max-width: 1040px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .examples-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .site-header { grid-template-columns: 1fr auto; }
  .header-cta { display: none; }
  .nav-toggle {
    display: inline-grid;
    gap: 5px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
  }
  .nav-toggle span { width: 18px; height: 2px; background: var(--dark); }
  .site-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0 4px;
  }
  .site-nav.is-open { display: flex; }
  .hero { padding: 34px 0 50px; }
  .hero-showcase, .seo-grid, .faq-grid, .footer-grid, .pricing-shell, .final-cta-grid { grid-template-columns: 1fr; }
  .examples-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .section-heading { text-align: left; margin-left: 0; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 24px, 1140px); }
  .hero-copy h1 { font-size: 34px; }
  h2 { font-size: 30px; }
  .steps, .form-row { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .site-footer nav { flex-direction: column; }
  body { padding-bottom: 58px; }
  .floating-whatsapp { bottom: 78px; }
  .mobile-sticky-cta { display: block; }
  .final-cta-grid { padding: 24px; }
  .hero-mockup { min-height: 0; padding: 10px; border-radius: 20px; }
  .preview-image { min-height: 280px; border-radius: 14px; }
  .preview-image img { height: 280px; min-height: 280px; }
  .preview-image div { padding: 20px; }
  .preview-image strong { font-size: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
