:root {
  --navy: #061b49;
  --navy-dark: #041438;
  --gold: #d19a2e;
  --gold-dark: #9a6a18;
  --gold-soft: #fff6df;
  --surface: #faf8f3;
  --text: #0b1f4d;
  --muted: #637083;
  --border: rgba(18, 52, 84, 0.12);
  --shadow: 0 20px 52px rgba(18, 52, 84, 0.10);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text);
  background: linear-gradient(180deg, #ffffff, #f7f9fc);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

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

.container {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-logo {
  display: block;
  width: 276px;
  max-height: 58px;
  object-fit: contain;
}

.nav-links,
.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.nav-links a,
.footer-links a {
  color: #24375f;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--gold-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(209, 154, 46, 0.22);
}

.page-hero {
  padding: 88px 0 54px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 249, 238, 0.94)),
    linear-gradient(135deg, rgba(6, 27, 73, 0.055), transparent 38%, rgba(209, 154, 46, 0.12));
  border-bottom: 1px solid rgba(209, 154, 46, 0.18);
}

.kicker {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-bottom: 18px;
  padding: 0 14px;
  border: 1px solid rgba(209, 154, 46, 0.24);
  border-radius: 8px;
  color: var(--gold-dark);
  background: var(--gold-soft);
  font-size: 13px;
  font-weight: 900;
}

h1 {
  max-width: 860px;
  color: var(--navy);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: 0;
}

.lead {
  max-width: 760px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 18px;
}

.section {
  padding: 72px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head h2 {
  color: var(--navy);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
}

.section-head p {
  margin-top: 12px;
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #fbfcff);
  box-shadow: var(--shadow);
}

.card.gold {
  border-color: rgba(209, 154, 46, 0.22);
  border-radius: 8px 70px 8px 70px;
  background: linear-gradient(180deg, rgba(255, 251, 242, 0.98), rgba(250, 242, 225, 0.92));
}

.icon-box {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid rgba(209, 154, 46, 0.24);
  border-radius: 8px;
  color: var(--gold-dark);
  background: linear-gradient(180deg, #fff8ec, #f7ecd9);
}

.material-symbols-rounded {
  font-size: 28px;
}

.card h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.24;
}

.card p,
.card li {
  color: var(--muted);
  font-size: 15px;
}

.list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  list-style: none;
}

.list li {
  padding-left: 22px;
  position: relative;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-status {
  display: none;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
}

.form-status.show {
  display: block;
}

.form-status.success {
  color: #155724;
  background: #e8f6ec;
}

.form-status.error {
  color: #842029;
  background: #f8d7da;
}

label {
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 15px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  background: #ffffff;
  font: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.footer {
  padding: 34px 0;
  color: #ffffff;
  background: var(--navy);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer .brand-logo {
  width: 236px;
  filter: brightness(0) invert(1);
}

.footer a,
.footer p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-links,
  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .grid,
  .grid.two,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .brand-logo {
    width: 220px;
  }
}
