:root {
  --bg: #0f172a;
  --surface: #111827;
  --surface-soft: #1f2937;
  --text: #e5e7eb;
  --muted: #94a3b8;
  --primary: #22c55e;
  --primary-hover: #16a34a;
  --white: #ffffff;
  --container: 1100px;
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(15, 23, 42, 0.9);
  border-bottom: 1px solid #1e293b;
  backdrop-filter: blur(6px);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 70px;
}

.logo {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0f172a;
  --surface: #111827;
  --surface-soft: #1f2937;
  --text: #e5e7eb;
  --muted: #94a3b8;
  --primary: #22c55e;
  --primary-hover: #16a34a;
  --white: #ffffff;
  --container: 1100px;
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(15, 23, 42, 0.9);
  border-bottom: 1px solid #1e293b;
  backdrop-filter: blur(6px);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 70px;
}

.logo {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin: 0.6rem 0;
}

h2 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  margin: 0 0 1rem;
}

.lead {
  color: var(--muted);
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.btn {
  border: 0;
  border-radius: 8px;
  padding: 0.7rem 1rem;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
}

.btn-primary {
  background: var(--primary);
  color: #052e16;
}

.btn-primary:hover {
  background: var(--primary-hover);
  color: #dcfce7;
}

.btn-secondary {
  border: 1px solid #334155;
  color: var(--text);
  background: transparent;
}

.btn-secondary:hover {
  background: #1e293b;
}

.hero-card,
.card,
.contact-form,
.stat {
  background: var(--surface);
  border: 1px solid #1f2937;
  border-radius: var(--radius);
}

.hero-card {
  padding: 1.25rem;
}

.hero-card ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
}

.section {
  padding: 4rem 0;
}

.section-muted {
  background: #0b1220;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  padding: 1.25rem;
}

.card p {
  color: var(--muted);
  margin: 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.stats {
  display: grid;
  gap: 1rem;
}

.stat {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat strong {
  font-size: 1.2rem;
}

.stat span {
  color: var(--muted);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-form {
  padding: 1rem;
  display: grid;
  gap: 0.8rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.92rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid #334155;
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--text);
  padding: 0.65rem;
}

.form-message {
  margin: 0.4rem 0 0;
  color: var(--muted);
  min-height: 1.2rem;
}

.site-footer {
  border-top: 1px solid #1e293b;
  padding: 1rem 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.footer-wrap a {
  color: var(--muted);
  text-decoration: none;
}

@media (max-width: 900px) {
  .hero-grid,
  .two-col,
  .contact-wrap,
  .cards {
    grid-template-columns: 1fr;
  }

  .nav-wrap {
    flex-direction: column;
    justify-content: center;
    gap: 0.7rem;
    padding: 0.8rem 0;
  }
}
