:root {
  --navy: #0b1f3a;
  --navy-dark: #071529;
  --gold: #c9a227;
  --cream: #f7f4eb;
  --white: #ffffff;
  --charcoal: #1f2933;
  --gray: #5f6b7a;
  --border: #e6e2d8;
  --shadow: 0 20px 45px rgba(7, 21, 41, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 7%;
  background: rgba(11, 31, 58, 0.96);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(7, 21, 41, 0.18);
}

.brand {
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.5px;
  font-size: 1.35rem;
}

.brand-main {
  color: var(--white);
}

.brand-accent {
  color: var(--gold);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.96rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
  opacity: 0.92;
}

.site-nav a:hover {
  color: var(--gold);
}

.menu-button {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--white);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
}

.hero {
  min-height: 680px;
  display: flex;
  align-items: center;
  padding: 90px 7%;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 21, 41, 0.95), rgba(11, 31, 58, 0.76)),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.8px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 7vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -2px;
}

h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -1px;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.25rem;
}

.hero-text {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  background: var(--gold);
  color: var(--navy);
}

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

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  text-align: center;
}

.trust-bar div {
  padding: 18px;
  border-right: 1px solid rgba(11, 31, 58, 0.18);
}

.section {
  padding: 82px 7%;
}

.section-light {
  background: var(--cream);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading p {
  color: var(--gray);
  font-size: 1.05rem;
}

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

.card,
.step {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.card {
  border-top: 5px solid var(--gold);
}

.card p,
.step p {
  margin-bottom: 0;
  color: var(--gray);
}

.feature-section {
  padding: 90px 7%;
  background: var(--navy);
  color: var(--white);
}

.feature-content {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.feature-section h2 {
  color: var(--white);
}

.feature-section p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 12px;
  max-width: 720px;
  margin: 28px auto 32px;
  padding: 0;
  list-style: none;
  text-align: left;
}

.check-list li {
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 700;
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-weight: 900;
}

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

.list-grid div {
  padding: 20px;
  border-left: 5px solid var(--gold);
  border-radius: 14px;
  background: var(--white);
  font-weight: 800;
  box-shadow: var(--shadow);
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.city-list span {
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--cream);
  color: var(--navy);
  font-weight: 800;
}

.contact-section {
  padding: 90px 7%;
  background:
    linear-gradient(rgba(7, 21, 41, 0.92), rgba(7, 21, 41, 0.92)),
    url("https://images.unsplash.com/photo-1516156008625-3a9d6067fab5?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
}

.contact-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 42px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-card p {
  color: var(--gray);
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
  color: var(--charcoal);
}

textarea {
  resize: vertical;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
  color: var(--navy);
  font-weight: 800;
}

.site-footer {
  padding: 26px 7%;
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  font-size: 0.92rem;
}

.site-footer p {
  margin: 4px 0;
}

@media (max-width: 980px) {
  .card-grid,
  .steps,
  .list-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
  }

  .menu-button {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 12px;
  }

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

  .hero {
    min-height: auto;
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .card-grid,
  .steps,
  .list-grid,
  .check-list,
  .trust-bar {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 28px;
  }
}
