:root {
  --brand-gold: #d39938;
  --brand-teal: #176071;
  --ink: #0f1f22;
  --muted: #5a6a6e;
  --bg: #f6f8f8;
  --card: #ffffff;
  --ring: rgba(23, 96, 113, 0.25);
  --shadow: 0 10px 30px rgba(15, 31, 34, 0.08);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
  display: block;
}

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  background: var(--brand-teal);
  color: #fff;
  border-radius: 8px;
  z-index: 1000;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 248, 248, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(23, 96, 113, 0.08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  color: var(--brand-teal);
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-weight: 500;
  color: var(--ink);
}

.nav-links a {
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-bottom-color: var(--brand-gold);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--brand-teal);
  transition: transform 0.3s ease;
}

.hero {
  padding: 4.5rem 0 3.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(211, 153, 56, 0.15);
  color: var(--brand-teal);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.15;
  margin: 1rem 0;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--brand-teal);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-primary:hover,
.btn-primary:focus {
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--brand-teal);
  color: var(--brand-teal);
  background: #fff;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(23, 96, 113, 0.08);
}

.card h3 {
  margin-top: 0;
  color: var(--brand-teal);
}

.section-title {
  font-size: 1.8rem;
  margin: 0 0 1rem;
}

.section-subtitle {
  color: var(--muted);
  margin-bottom: 2rem;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: center;
}

.highlight {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-left: 6px solid var(--brand-gold);
}

.form {
  display: grid;
  gap: 1rem;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(23, 96, 113, 0.2);
  font: inherit;
  background: #fff;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--ring);
  border-color: var(--brand-teal);
}

.footer {
  padding: 3rem 0 2rem;
  background: #0f2d33;
  color: #dfe8ea;
}

.footer a {
  color: #dfe8ea;
}

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

.footer small {
  color: rgba(223, 232, 234, 0.7);
}

.page-header {
  padding: 3rem 0 1.5rem;
}

.page-header h1 {
  margin-bottom: 0.5rem;
}

.notice {
  background: rgba(23, 96, 113, 0.08);
  padding: 1rem;
  border-radius: 12px;
  color: var(--brand-teal);
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.badge {
  padding: 0.35rem 0.75rem;
  background: rgba(23, 96, 113, 0.1);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}

@media (max-width: 860px) {
  .nav-links {
    position: absolute;
    top: 72px;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow);
    border-radius: 12px;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 3rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
