
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #122026;
  background: #f4f6f7;
}

a {
  color: #0d6efd;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

main {
  padding: 5rem 1rem 3rem;
}

.page {
  max-width: 1120px;
  margin: 0 auto;
}

.page-header {
  max-width: 1120px;
  margin: 0 auto 2.25rem;
}

.page-header h1 {
  font-size: clamp(2rem, 3vw, 2.7rem);
  margin-bottom: 0.5rem;
}

.page-header p {
  max-width: 48rem;
  color: #34434a;
}

/* HEADER & NAV */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(10, 24, 32, 0.97);
  color: #fff;
  padding: 0.7rem 1rem 0.9rem;
  backdrop-filter: blur(10px);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.logo-badge {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #ffd9a8, #f47a2a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}

.logo-sub {
  font-size: 0.75rem;
  opacity: 0.9;
}

/* NAV */

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
  padding: 0.2rem;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  position: relative;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-label span::before { top: -6px; }
.nav-toggle-label span::after { top: 6px; }

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.nav a {
  color: #fdfdfd;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, transform 0.1s ease;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.nav a.active {
  background: rgba(244, 122, 42, 0.96);
  color: #111;
}

/* HERO */

.hero {
  max-width: 1120px;
  margin: 0 auto 3rem;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.15rem 0.8rem;
  border-radius: 999px;
  background: rgba(244, 122, 42, 0.12);
  color: #8a4a13;
  font-size: 0.85rem;
  margin-bottom: 0.9rem;
}

.hero-actions {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.1s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #f47a2a, #ffb347);
  color: #111;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.75);
  color: #122026;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn-ghost:hover {
  background: #ffffff;
  transform: translateY(-1px);
}

/* GRID & CARDS */

.grid {
  display: grid;
  gap: 1.2rem;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

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

.card {
  background: #ffffff;
  border-radius: 1.1rem;
  padding: 1.2rem 1.3rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.07);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.card-tag {
  font-size: 0.75rem;
  padding: 0.14rem 0.65rem;
  border-radius: 999px;
  background: rgba(14, 116, 144, 0.08);
  color: #0e7490;
}

.list {
  padding-left: 1.2rem;
  margin: 0.5rem 0;
}

.list li {
  margin-bottom: 0.5rem;
}

/* SECTION SPACING */

.page-section {
  margin-bottom: 3rem;
}

/* TABLE */

.simple-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
}

.simple-table th,
.simple-table td {
  padding: 0.4rem 0.3rem;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.simple-table th {
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7a83;
}

/* REGION LABELS */

.region-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7a83;
  margin-bottom: 0.25rem;
}

/* FOOTER */

.site-footer {
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: #5b6c74;
}

/* RESPONSIVE NAV */

@media (max-width: 840px) {
  .nav-toggle-label {
    display: block;
  }

  .nav {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0.6rem;
    display: none;
  }

  .nav-toggle:checked ~ .nav {
    display: flex;
  }

  main {
    padding-top: 4.8rem;
  }
}
