
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #111827;
  background-color: #f9fafb;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.topbar {
  background: #111827;
  color: #f9fafb;
  padding: 10px 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.brand-name {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.03em;
}

.brand-sub {
  font-size: 12px;
  opacity: 0.85;
}

.contact-mini a {
  display: block;
  font-size: 12px;
  text-align: right;
}

.nav {
  background: #111827;
  border-top: 1px solid #374151;
  border-bottom: 1px solid #374151;
}

.nav-inner {
  display: flex;
  gap: 20px;
  padding: 10px 0;
  overflow-x: auto;
}

.nav-inner a {
  color: #e5e7eb;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav-inner a:hover {
  color: #ffffff;
}

.hero {
  background: linear-gradient(to bottom, #111827, #1f2937);
  color: #f9fafb;
  padding: 60px 0 40px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: 30px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 15px;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin: 8px 0 4px;
}

.btn-primary,
.btn-outline {
  padding: 10px 18px;
  font-size: 13px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: #f97316;
  color: #111827;
  font-weight: 600;
}

.btn-primary:hover {
  background: #fb923c;
}

.btn-outline {
  background: transparent;
  color: #f9fafb;
  border-color: #9ca3af;
}

.btn-outline:hover {
  background: #111827;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  opacity: 0.9;
}

.section {
  padding: 40px 0;
}

.section.alt {
  background: #f3f4f6;
}

.section h2 {
  font-size: 22px;
  margin-bottom: 16px;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.8fr);
  gap: 24px;
  align-items: flex-start;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  background: #ffffff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 6px 14px rgba(15,23,42,0.12);
  border: 1px solid #e5e7eb;
}

.card h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #111827;
}

.card p {
  font-size: 13px;
  color: #4b5563;
}

.checklist {
  list-style: none;
  margin-top: 4px;
}

.checklist li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  font-size: 13px;
  color: #374151;
}

.checklist li::before {
  content: "•";
  position: absolute;
  left: 4px;
  top: 0;
  color: #f97316;
}

.info-box {
  background: #111827;
  color: #f9fafb;
  padding: 16px;
  border-radius: 14px;
  font-size: 13px;
  box-shadow: 0 6px 14px rgba(15,23,42,0.3);
}

.contact-form {
  background: #ffffff;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 6px 14px rgba(15,23,42,0.12);
  display: grid;
  gap: 10px;
  font-size: 13px;
}

.contact-form label {
  display: grid;
  gap: 4px;
}

.contact-form input,
.contact-form textarea {
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 13px;
  font-family: inherit;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #f97316;
  box-shadow: 0 0 0 2px rgba(249,115,22,0.15);
}

.contact-form button {
  border: none;
}

.contact-form button[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

.small-note {
  font-size: 11px;
  color: #6b7280;
}

.footer {
  background: #111827;
  color: #9ca3af;
  padding: 22px 0;
  font-size: 11px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.footer p {
  margin-bottom: 6px;
}

.disclaimer {
  max-width: 520px;
}

@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 40px;
  }
  .hero h1 {
    font-size: 24px;
  }
}
