* {
  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: #f3f4f6;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Top bar */

.topbar {
  background: #111827;
  color: #f9fafb;
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 10;
}

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

.logo {
  font-weight: 700;
  letter-spacing: 0.05em;
}

.topbar nav a {
  margin-left: 1.5rem;
  font-size: 0.95rem;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.topbar nav a:hover {
  opacity: 1;
}

/* Hero */

.hero {
  background: radial-gradient(circle at top left, #1d4ed8, #111827 55%);
  color: #e5e7eb;
  padding: 4rem 0 4.5rem;
}

.hero-inner {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
  align-items: center;
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.hero p {
  max-width: 32rem;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.hero-note {
  font-size: 0.85rem;
  opacity: 0.85;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background-color 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}

.btn-primary {
  background: #f97316;
  color: #111827;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #e5e7eb;
  border-color: rgba(249, 250, 251, 0.4);
}

.btn-secondary:hover {
  background: rgba(15, 23, 42, 0.5);
  transform: translateY(-1px);
}

.inline-btn {
  margin-top: 0.75rem;
}

.full-width {
  width: 100%;
}

.hero-card {
  background: #020617;
  border-radius: 1rem;
  padding: 1.6rem;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.5);
  transform: translateY(0);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.hero-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.6);
}

.hero-card h2 {
  font-size: 1.2rem;
  margin-bottom: 0.9rem;
}

.hero-card ul {
  list-style: none;
}

.hero-card li {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

/* Highlights strip */

.highlights {
  background: #020617;
  color: #e5e7eb;
  padding: 0.9rem 0;
  border-bottom: 1px solid #111827;
}

.highlights-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
  font-size: 0.9rem;
}

.highlight-item {
  display: flex;
  flex-direction: column;
}

.highlight-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  opacity: 0.7;
}

.highlight-value {
  font-weight: 500;
}

/* Sections */

.section {
  padding: 3.5rem 0;
  background: #f3f4f6;
}

.section-alt {
  background: #ffffff;
}

.section h2 {
  font-size: 1.7rem;
  margin-bottom: 1.5rem;
}

/* Cards */

.cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 0.9rem;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
}

.card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.card-tagline {
  margin-top: 0.4rem;
  font-size: 0.9rem;
  color: #6b7280;
}

/* Two-column layout */

.two-column {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.3fr);
  align-items: flex-start;
}

.info-box {
  background: #eff6ff;
  border-radius: 0.9rem;
  padding: 1.3rem 1.4rem;
  border: 1px solid #bfdbfe;
}

.info-box h3 {
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}

.info-box ul {
  margin-left: 1.2rem;
}

/* Pills / tags */

.pill-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill {
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  background: #e0f2fe;
  border: 1px solid #bae6fd;
  font-size: 0.8rem;
}

/* Contact */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-box {
  margin-top: 1rem;
  padding: 1.4rem 1.6rem;
  background: #ffffff;
  border-radius: 0.9rem;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.contact-note {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  color: #4b5563;
}

/* Form */

.form-card {
  background: #ffffff;
  border-radius: 0.9rem;
  padding: 1.6rem 1.7rem;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
}

.form-card h3 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.9rem;
}

.form-row label {
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 0.55rem 0.7rem;
  border-radius: 0.5rem;
  border: 1px solid #d1d5db;
  font-size: 0.9rem;
  outline: none;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.2);
}

.form-hint {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #6b7280;
}

/* Footer */

.footer {
  background: #111827;
  color: #9ca3af;
  padding: 1rem 0;
  text-align: center;
  font-size: 0.85rem;
}

/* Responsive */

@media (max-width: 768px) {
  .hero-inner,
  .two-column,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }

  .topbar nav a {
    margin-left: 1rem;
  }
}
