:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #5f6a78;
  --accent: #ea6c00;
  --accent-hover: #c75c00;
  --navy: #0f2044;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* NAV */
.navbar {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  width: min(1080px, calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--accent);
}

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 100%);
  color: white;
  padding: 6rem 0;
  text-align: center;
}

.hero-tag {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 1rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
}

.subtitle {
  max-width: 36rem;
  margin: 1.25rem auto 2rem;
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  padding: 0.9rem 1.75rem;
  background: var(--accent);
  color: white;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.button:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.button-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  color: white;
}

.button-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}

/* STATS BAR */
.stats-bar {
  background: var(--surface);
  border-bottom: 1px solid #e5e7eb;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

/* CONTAINER */
.container {
  width: min(1080px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0;
}

/* SECTIONS */
section {
  margin-top: 4rem;
}

.section-tag {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 0.5rem;
}

h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
}

p {
  color: var(--muted);
}

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

.card {
  background: var(--surface);
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(15, 32, 68, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 32, 68, 0.12);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  color: var(--navy);
  font-size: 1.1rem;
}

/* ABOUT */
.about-section {
  background: var(--surface);
  border-radius: 1.5rem;
  padding: 3rem;
  border: 1px solid #e5e7eb;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.6rem;
}

.about-list li {
  color: var(--muted);
  padding-left: 1.5rem;
  position: relative;
}

.about-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* FORM */
form {
  display: grid;
  gap: 1rem;
  max-width: 42rem;
  margin-top: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.3rem;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 0.75rem;
  padding: 0.85rem 1rem;
  font: inherit;
  color: var(--text);
  background: white;
  transition: border-color 0.2s;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--accent);
}

button {
  width: fit-content;
  padding: 0.95rem 2rem;
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

button:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* FOOTER */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  margin-top: 5rem;
  padding: 2.5rem 0;
}

.footer-inner {
  width: min(1080px, calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-inner p {
  margin: 0;
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
}

@media (max-width: 640px) {
  .hero {
    padding: 4rem 1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .about-section {
    padding: 2rem 1.25rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}
