:root {
  --color-primary: #0A2342; /* deep navy */
  --color-accent: #CBA135;  /* gold */
  --color-bg: #F5F5F7;
  --color-text: #222222;
  --color-muted: #6B7280;
  --max-width: 1100px;
  --radius: 10px;
}

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

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

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

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

/* Layout */

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header / Nav */

header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 50;
}

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

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo {
  height: 42px;
  width: auto;
}

.nav-brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 0.3rem 0;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Hero */

.hero {
  background: radial-gradient(circle at top left, #182c4b 0, #040711 55%);
  color: #ffffff;
  padding: 4rem 0 3.5rem;
}

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

.hero-kicker {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: #9ca3af;
  margin-bottom: 0.6rem;
}

.hero-title {
  font-size: 2.4rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1rem;
  color: #e5e7eb;
  max-width: 30rem;
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease,
    background-color 0.12s ease;
}

.btn-primary {
  background-color: var(--color-accent);
  color: #111827;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  background-color: #e0b44a;
}

.btn-outline {
  border: 1px solid rgba(229, 231, 235, 0.7);
  color: #e5e7eb;
  background: transparent;
}

.btn-outline:hover {
  background-color: rgba(15, 23, 42, 0.6);
}

.hero-meta {
  font-size: 0.85rem;
  color: #9ca3af;
}

.hero-card {
  background: rgba(15, 23, 42, 0.92);
  border-radius: 20px;
  padding: 1.6rem 1.4rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.5);
}

.hero-card-title {
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
}

.hero-card-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  color: #d1d5db;
}

.hero-card-row span:first-child {
  color: #9ca3af;
}

/* Sections */

.section {
  padding: 3rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2.2rem;
}

.section-kicker {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  color: var(--color-muted);
  margin-bottom: 0.4rem;
}

.section-title {
  font-size: 1.7rem;
  margin-bottom: 0.4rem;
}

.section-subtitle {
  font-size: 0.98rem;
  color: var(--color-muted);
  max-width: 32rem;
  margin: 0 auto;
}

/* Feature grid */

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

.feature-card {
  background-color: #ffffff;
  border-radius: var(--radius);
  padding: 1.2rem 1.3rem;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.feature-title {
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.feature-text {
  font-size: 0.92rem;
  color: var(--color-muted);
}

/* Two-column */

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

/* Cards */

.info-card {
  background-color: #ffffff;
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  font-size: 0.95rem;
}

/* Forms */

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

label {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.15rem;
  display: inline-block;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 7px;
  border: 1px solid #d1d5db;
  font: inherit;
  resize: vertical;
}

textarea {
  min-height: 110px;
}

/* Contact details */

.contact-details {
  font-size: 0.95rem;
  color: var(--color-muted);
}

.contact-details p {
  margin: 0.2rem 0;
}

/* Footer */

footer {
  margin-top: auto;
  background-color: #020617;
  color: #9ca3af;
  font-size: 0.85rem;
}

.footer-inner {
  padding: 1.3rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-inner a {
  color: #e5e7eb;
}

/* Responsive */

@media (max-width: 820px) {
  .hero-inner,
  .two-column {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 3rem;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }
}
