/* Reset-ish */
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111827;
  background: #f3f4f6;
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Top bar */
.topbar {
  background: #0b1120;
  color: #e5e7eb;
  font-size: 0.9rem;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
}
.brand {
  display: flex;
  flex-direction: column;
}
.logo-text {
  font-weight: 700;
  letter-spacing: 0.1em;
}
.tagline {
  font-size: 0.8rem;
  color: #9ca3af;
}
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.phone {
  font-weight: 600;
}

/* Nav */
.main-nav {
  background: #111827;
  color: #f9fafb;
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}
.nav-logo {
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}
.nav-links a {
  opacity: 0.8;
}
.nav-links a:hover {
  opacity: 1;
}

/* Hero */
.hero {
  position: relative;
  color: #f9fafb;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.4));
}
.hero-content {
  position: relative;
  padding: 4rem 0;
}
.hero h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 1rem;
}
.hero p {
  max-width: 34rem;
  margin-bottom: 1.5rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
}
.hero-badges span {
  background: rgba(15, 23, 42, 0.7);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: #22c55e;
  color: #022c22;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}
.btn-outline {
  background: transparent;
  color: #e5e7eb;
  border-color: #e5e7eb;
}
.btn-outline:hover {
  background: #e5e7eb;
  color: #111827;
}

/* Sections */
.section {
  padding: 3.5rem 0;
  background: #f9fafb;
}
.section-alt {
  background: #e5e7eb;
}
.section h2 {
  margin-top: 0;
  margin-bottom: 1rem;
}
.section-lead {
  max-width: 32rem;
  margin-bottom: 2rem;
}

/* Layout helpers */
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.card {
  background: #f9fafb;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
}
.card h3 {
  margin-top: 0;
}
.card ul {
  padding-left: 1.2rem;
}

/* Lists */
.checklist {
  list-style: none;
  padding-left: 0;
}
.checklist li {
  padding-left: 1.4rem;
  position: relative;
  margin-bottom: 0.4rem;
}
.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #16a34a;
  font-size: 0.9rem;
}
.pill-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 1rem 0;
}
.pill-list li {
  background: #111827;
  color: #f9fafb;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
}
.small {
  font-size: 0.9rem;
}

/* Contact form */
.highlight-box {
  background: #111827;
  color: #e5e7eb;
  padding: 1rem;
  border-radius: 0.75rem;
  font-size: 0.9rem;
}
.contact-form {
  background: #f9fafb;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 0.75rem;
}
.contact-form label {
  display: block;
  font-size: 0.9rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.5rem 0.6rem;
  border-radius: 0.4rem;
  border: 1px solid #d1d5db;
  font: inherit;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #22c55e;
  outline-offset: 1px;
  border-color: #16a34a;
}

/* Footer */
.footer {
  background: #020617;
  color: #9ca3af;
  font-size: 0.8rem;
  padding: 1rem 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
  align-items: center;
}

/* Responsive tweaks */
@media (max-width: 800px) {
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .nav-links {
    flex-wrap: wrap;
  }
  .two-column {
    grid-template-columns: 1fr;
  }
  .hero {
    text-align: left;
  }
  .hero-badges {
    justify-content: flex-start;
  }
}

@media (max-width: 500px) {
  .topbar-inner,
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

.contact-info a {
  text-decoration: underline;
  cursor: pointer;
  pointer-events: auto;
}

