:root {
  --brand: #e8630a;
  --brand-dark: #c24f04;
  --brand-soft: #fff1e6;
  --wa: #1fa855;
  --ink: #22252b;
  --muted: #6b7280;
  --line: #ece7df;
  --bg: #fdfaf5;
  --card: #ffffff;
  --tint: #f7f1e8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
}

.container { width: min(1120px, 92%); margin-inline: auto; }

.topbar { background: var(--ink); color: #f5efe7; font-size: 0.85rem; padding: 8px 0; }
.topbar-wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.topbar a { color: #ffd9b8; text-decoration: none; font-weight: 600; }

.navbar {
  position: sticky; top: 0; z-index: 90;
  background: rgba(253, 250, 245, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 13px 0; gap: 14px; }

.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1rem; color: var(--ink); text-decoration: none; white-space: nowrap; }
.logo-mark {
  display: inline-grid; place-items: center;
  background: var(--brand); color: #fff; font-weight: 800; font-size: 0.7rem;
  width: 40px; height: 40px; border-radius: 11px;
}

.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a { color: var(--ink); text-decoration: none; font-size: 0.95rem; font-weight: 500; padding: 6px 2px; border-bottom: 2px solid transparent; transition: all 0.15s; }
.nav-links a:hover { color: var(--brand); border-bottom-color: var(--brand); }

.hamburger { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2.5px; background: var(--ink); margin: 5px 0; border-radius: 3px; }

.btn {
  display: inline-block; padding: 11px 22px; border-radius: 10px;
  text-decoration: none; font-weight: 700; font-size: 0.95rem;
  border: 2px solid transparent; cursor: pointer; transition: all 0.15s;
}
.btn-lg { padding: 14px 26px; font-size: 1rem; }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: #178a45; transform: translateY(-1px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-1px); }
.btn-outline-brand { border-color: var(--brand); color: var(--brand); background: transparent; }
.full { width: 100%; text-align: center; }
.nav-cta { white-space: nowrap; }

.hero { padding: 64px 0 56px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 44px; align-items: center; }

.pill {
  display: inline-block; background: var(--brand-soft); color: var(--brand-dark);
  font-size: 0.82rem; font-weight: 700; padding: 6px 14px; border-radius: 999px;
  margin-bottom: 18px; border: 1px solid #ffd9ba;
}
.hero h1 { font-size: clamp(2rem, 4.4vw, 3rem); line-height: 1.12; letter-spacing: -0.5px; margin-bottom: 16px; font-weight: 400; }
.hero h1 strong { font-weight: 800; color: var(--brand-dark); }
.hero p { color: var(--muted); max-width: 50ch; margin-bottom: 24px; font-size: 1.02rem; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }

.trust-row { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; color: var(--muted); font-size: 0.88rem; font-weight: 600; }

.hero-cards { display: flex; flex-direction: column; gap: 14px; }
.float-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 14px; padding: 16px 18px;
  box-shadow: 0 8px 22px rgba(34, 37, 43, 0.06);
}
.float-card b { display: block; font-size: 0.98rem; }
.float-card small { color: var(--muted); font-size: 0.8rem; }
.fc-icon { font-size: 1.6rem; background: var(--brand-soft); width: 52px; height: 52px; display: grid; place-items: center; border-radius: 12px; flex-shrink: 0; }
.fc-tag { margin-left: auto; background: #e8f7ee; color: #157a41; font-size: 0.72rem; font-weight: 800; padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
.fc2 { margin-left: 28px; }
.fc3 { margin-left: 56px; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-cards { display: none; }
  .hide-sm { display: none; }
  .nav-cta { display: none; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 4px;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: 14px 5%; display: none;
  }
  .nav-links.open { display: flex; }
}
