:root {
  --bg: #0f172a;
  --bg-soft: #1e293b;
  --primary: #ea580c;
  --primary-dark: #c2410c;
  --text: #0f172a;
  --muted: #64748b;
  --card: #ffffff;
  --soft: #f8fafc;
  --border: #e2e8f0;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

.container { width: min(1120px, 92%); margin: 0 auto; }

.hero {
  color: #fff;
  background: radial-gradient(circle at top right, #334155, #0f172a 55%);
  padding-bottom: 64px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.logo { font-weight: 800; letter-spacing: .5px; }
.hero-content { padding: 46px 0 10px; max-width: 760px; }
.eyebrow { color: #cbd5e1; margin-bottom: 8px; font-weight: 600; }
h1 { font-size: clamp(2rem, 4vw, 3.25rem); margin: 0 0 12px; line-height: 1.08; }
.lead { color: #e2e8f0; max-width: 62ch; margin: 0; }
.hero-actions { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.hero-meta { margin-top: 16px; color: #cbd5e1; font-size: .95rem; }

.btn {
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
  text-decoration: none;
  padding: 11px 16px;
  border-radius: 10px;
  font-weight: 700;
  transition: .2s ease;
}
.btn:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.btn-light { background: #fff; color: #0f172a; border-color: #fff; }
.btn-light:hover { background: #f8fafc; }
.btn-outline { background: transparent; border-color: #cbd5e1; color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.08); }

.section { padding: 72px 0; }
.section h2 { margin: 0 0 10px; font-size: 1.9rem; }
.section-copy { margin: 0 0 16px; color: var(--muted); max-width: 80ch; }
.tagline { font-weight: 700; margin-top: 8px; }
.alt { background: var(--soft); }

.grid { display: grid; gap: 18px; }
.cards { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); margin-top: 20px; }
.two-col { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.three-col { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  background: var(--card);
  box-shadow: 0 8px 20px rgba(15, 23, 42, .06);
}
.card h3 { margin-top: 0; margin-bottom: 8px; }
.card p { margin: 0; color: #334155; }
.card ul { margin: 0; padding-left: 18px; color: #334155; }
.card li + li { margin-top: 6px; }

.bullets {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 12px;
}
.bullets > div {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font-weight: 600;
}

.timeline {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  margin-top: 16px;
}
.timeline article {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  background: #fff;
}
.timeline strong { display: block; margin-bottom: 6px; }
.timeline span { color: #334155; }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.steps > div {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  padding: 14px;
}
.steps strong { display: block; margin-bottom: 4px; }
.steps span { color: #334155; }

.media-card {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .06);
}

.media-card img {
  width: 100%;
  display: block;
}

.section-media {
  margin-top: 18px;
}

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

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

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  color: #1e293b;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(234, 88, 12, .2);
  border-color: var(--primary);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.form-actions small {
  color: var(--muted);
}

.contact a { color: #0369a1; text-decoration: none; }
.contact a:hover { text-decoration: underline; }

.footer {
  background: #0b1220;
  color: #cbd5e1;
  padding: 24px 0;
  font-size: .95rem;
}

@media (max-width: 720px) {
  .nav { gap: 12px; }
  .btn { padding: 10px 14px; }
  .section { padding: 58px 0; }
}
