
:root {
  --primary: #166534;
  --primary-soft: #22c55e;
  --dark: #0f172a;
  --light: #f3f4f6;
  --bg: #ffffff;
  --accent: #fbbf24;
  --text: #111827;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
header {
  background: var(--dark);
  color: #fff;
  padding: 0.75rem 1.25rem;
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-left { display: flex; align-items: center; gap: 0.75rem; }
.logo-mark {
  width: 40px; height: 40px; border-radius: 8px;
  border: 2px solid #bbf7d0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; letter-spacing: 1px;
}
.nav-title { font-weight: 700; font-size: 1rem; }
.nav-sub { font-size: 0.8rem; opacity: 0.8; }
.nav-right {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 0.5rem 1rem; font-size: 0.9rem;
}
.nav-links {
  display: flex; flex-wrap: wrap; gap: 0.75rem; font-size: 0.85rem;
}
.nav-phone { font-weight: 700; white-space: nowrap; }
.btn {
  border-radius: 999px; padding: 0.5rem 1rem;
  border: none; cursor: pointer; font-weight: 600;
  font-size: 0.85rem; text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center;
}
.btn-primary {
  background: linear-gradient(to right, var(--primary), var(--primary-soft));
  color: white;
}
.btn-outline {
  background: transparent; color: white;
  border: 1px solid rgba(255,255,255,0.5);
}
.hero {
  background: radial-gradient(circle at top left, #14532d, #020617);
  color: white; padding: 3rem 1.25rem 2.5rem;
}
.hero-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 2.5rem; align-items: center;
}
.hero-tag {
  font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 0.13em; color: var(--accent);
  margin-bottom: 0.5rem; font-weight: 600;
}
.hero h1 {
  font-size: clamp(1.9rem, 3.2vw + 1rem, 2.8rem);
  margin-bottom: 0.75rem;
}
.hero p {
  font-size: 0.98rem; max-width: 32rem;
  color: #e5e7eb; margin-bottom: 1.2rem;
}
.hero-highlights {
  display: flex; flex-wrap: wrap;
  gap: 0.75rem 1.5rem; font-size: 0.85rem;
  color: #d1d5db; margin-bottom: 1.4rem;
}
.hero-highlights span::before {
  content: "• "; color: var(--accent); margin-right: 0.1rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1rem; }
.hero-note { font-size: 0.8rem; color: #9ca3af; }
.hero-card {
  background: rgba(15,23,42,0.95);
  border-radius: 1rem; padding: 1.25rem 1.25rem 1.1rem;
  border: 1px solid rgba(148,163,184,0.35);
}
.hero-card h2 { font-size: 1.05rem; margin-bottom: 0.7rem; }
.hero-card p {
  font-size: 0.86rem; margin-bottom: 0.8rem; color: #e5e7eb;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.8rem; }
.badge {
  font-size: 0.72rem; padding: 0.25rem 0.55rem;
  border-radius: 999px; border: 1px solid rgba(148,163,184,0.6);
}
.hero-mini { font-size: 0.75rem; color: #9ca3af; }
main { max-width: 1100px; margin: 0 auto; padding: 2.5rem 1.25rem 3rem; }
.section-title { font-size: 1.35rem; margin-bottom: 0.4rem; }
.section-sub { font-size: 0.9rem; color: #6b7280; margin-bottom: 1.3rem; }
footer {
  border-top: 1px solid #e5e7eb; padding: 1.2rem 1.25rem;
  font-size: 0.75rem; color: #6b7280; background: #f9fafb;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  justify-content: space-between; align-items: center;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: minmax(0, 1fr); }
  header { position: static; }
  .nav { flex-direction: column; align-items: flex-start; }
}
