:root {
  --orange: #f26b1f;
  --orange-deep: #da571a;
  --ink: #121212;
  --muted: #555;
  --paper: #fff;
  --fog: #f6f7f8;
  --green: #25d366;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Satoshi", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 20% 0%, #fff2e8 0, #f9f9f9 38%, #f4f4f4 100%);
}
.topbar {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo { width: 220px; max-width: 56vw; border-radius: 10px; }
.back { color: #333; font-weight: 800; text-decoration: none; }
main { max-width: 1120px; margin: 0 auto; padding: 8px 16px 48px; }
.hero {
  min-height: 460px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 5vw, 58px);
  border-radius: 26px;
  overflow: hidden;
  background: #151515;
  color: #fff;
}
.eyebrow {
  margin: 0 0 10px;
  color: #ff9c61;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}
h1 { margin: 0; font-size: clamp(2.1rem, 5vw, 4rem); line-height: 1.02; }
.lead { color: rgba(255,255,255,.76); font-size: 1.08rem; line-height: 1.55; }
.hero img {
  width: 100%;
  min-height: 300px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}
.btn:hover { background: var(--orange-deep); }
.btn-wa { background: var(--green); color: #0d2f18; }
.btn-wa:hover { background: #1fb85a; }
.section {
  margin-top: 22px;
  padding: clamp(20px, 4vw, 36px);
  border: 1px solid #e7e7e7;
  border-radius: 20px;
  background: var(--paper);
}
.section h2 { margin: 0 0 14px; font-size: clamp(1.5rem, 3vw, 2.15rem); }
.section p, .section li { color: var(--muted); line-height: 1.65; }
.feature-grid, .related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.feature, .related {
  padding: 16px;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  background: var(--fog);
}
.feature strong { display: block; margin-bottom: 6px; }
.related { color: var(--ink); font-weight: 850; text-decoration: none; }
.related span { display: block; margin-top: 6px; color: #7a3b10; font-size: .88rem; }
.steps { display: grid; gap: 10px; padding: 0; list-style: none; counter-reset: steps; }
.steps li { padding: 14px; border-left: 4px solid var(--orange); background: #fff7f1; }
.faq details { padding: 14px 0; border-bottom: 1px solid #e8e8e8; }
.faq summary { cursor: pointer; font-weight: 850; }
.final-cta {
  text-align: center;
  background: linear-gradient(145deg, #fff4eb, #ffe3cf);
  border-color: #ffcda9;
}
.final-cta p { max-width: 680px; margin-left: auto; margin-right: auto; }
footer { padding: 22px 16px; color: #666; text-align: center; }
@media (max-width: 800px) {
  .hero, .feature-grid, .related-grid { grid-template-columns: 1fr; }
  .hero { min-height: 0; }
  .hero img { min-height: 220px; }
}
