:root {
  color-scheme: dark;
  --bg: #14100c;
  --panel: #1c1610;
  --panel-2: #2a2118;
  --text: #f2ebe3;
  --muted: #9a8b7a;
  --accent: #dd8933;
  --accent-2: #c4721f;
  --accent-light: #f0a65c;
  --accent-muted: rgba(221, 137, 51, 0.15);
  --border: rgba(255, 255, 255, 0.08);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(ellipse at top, #2a1f14 0%, var(--bg) 60%);
  color: var(--text);
}

.page {
  width: min(960px, 100%);
  margin: 0 auto;
  padding: 0 20px 40px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-logo-full {
  display: block;
  flex-shrink: 0;
  height: 40px;
  width: auto;
  max-width: min(240px, 55vw);
  object-fit: contain;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 0;
  border-radius: 12px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: filter 0.15s;
}

.btn:hover { filter: brightness(1.08); }

.btn-primary {
  background: var(--accent-2);
  color: #fff;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-lg {
  padding: 14px 22px;
  font-size: 15px;
  border-radius: 14px;
}

.hero {
  text-align: center;
  padding: 48px 0 40px;
}

.hero-badge {
  display: inline-block;
  margin: 0 0 16px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent-muted);
  border: 1px solid rgba(221, 137, 51, 0.25);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
}

.hero h1 {
  margin: 0;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.hero-tagline {
  margin: 16px auto 0;
  max-width: 520px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.feature-card {
  background: rgba(28, 22, 16, 0.85);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 20px;
  text-align: center;
}

.feature-icon {
  display: block;
  font-size: 28px;
  margin-bottom: 10px;
}

.feature-card h2 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.section-title {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
}

.prompt-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}

.prompt-chip {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(31, 41, 55, 0.9);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 14px;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}

.prompt-chip:hover {
  border-color: rgba(221, 137, 51, 0.4);
  background: rgba(221, 137, 51, 0.08);
}

.trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
  color: var(--muted);
  font-size: 14px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer {
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 20px;
}

.footer h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.footer-muted,
.footer-value {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.footer-label {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.footer-copy {
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.footer-copy a {
  color: var(--accent);
  text-decoration: none;
}

.footer-copy a:hover { text-decoration: underline; }

.phone-link {
  color: var(--accent);
  text-decoration: none;
}

.phone-link:hover { text-decoration: underline; }

@media (max-width: 720px) {
  .brand-logo-full { height: 32px; max-width: min(200px, 50vw); }
  .features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 16px; }
  .hero { padding-top: 28px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
}