* {
  box-sizing: border-box;
}

:root {
  --navy: #10233f;
  --navy-2: #172f53;
  --gold: #c89b3c;
  --cream: #f7f3ea;
  --soft: #eef2f6;
  --text: #17202a;
  --muted: #5f6b7a;
  --white: #ffffff;
  --border: #dce2ea;
}

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

a {
  color: inherit;
}

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

.narrow {
  max-width: 780px;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

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

.logo {
  font-weight: 800;
  text-decoration: none;
  color: var(--navy);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

nav {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-cta {
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 999px;
}

.hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
  padding: 90px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

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

h1, h2, h3 {
  line-height: 1.12;
  margin: 0 0 16px;
  color: inherit;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  letter-spacing: -0.05em;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.3rem;
}

p {
  margin: 0 0 16px;
}

.hero-text {
  font-size: 1.25rem;
  color: #e7ecf3;
  max-width: 650px;
}

.hero-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.hero-card ul,
.check-list {
  padding-left: 20px;
  margin: 16px 0 0;
}

.hero-card li {
  margin-bottom: 10px;
}

.button-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 800;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
}

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

.button.secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.hero .button.secondary {
  color: var(--white);
  border-color: rgba(255,255,255,0.65);
}

.full {
  width: 100%;
}

.section {
  padding: 78px 0;
}

.soft-bg {
  background: var(--soft);
}

.two-column {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
}

.center {
  text-align: center;
}

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

.card,
.price-card,
.contact-card,
.side-note,
.step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(16,35,63,0.06);
}

.card h3,
.card h2,
.price-card h2,
.step h3 {
  color: var(--navy);
}

.text-link {
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

.cta-section {
  padding: 60px 0 90px;
}

.cta-box {
  background: var(--navy);
  color: var(--white);
  border-radius: 28px;
  padding: 46px;
  text-align: center;
}

.cta-box p {
  color: #e7ecf3;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero {
  background: var(--cream);
  padding: 80px 0;
}

.page-hero h1 {
  color: var(--navy);
}

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

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

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

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

.price-card.featured {
  border: 2px solid var(--gold);
  transform: translateY(-8px);
}

.tag {
  display: inline-flex;
  background: var(--cream);
  color: var(--navy);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 10px;
}

.check-list li {
  margin-bottom: 9px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}

form {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

label {
  font-weight: 800;
  color: var(--navy);
}

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

textarea {
  resize: vertical;
}

.small-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 20px;
}

footer {
  border-top: 1px solid var(--border);
  padding: 26px 0;
  background: var(--white);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-inner a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 860px) {
  .hero-grid,
  .two-column,
  .cards,
  .steps,
  .pricing-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  nav {
    gap: 14px;
  }

  .hero,
  .page-hero {
    padding: 58px 0;
  }

  .section {
    padding: 56px 0;
  }

  .cta-box {
    padding: 32px 22px;
  }
}


.hidden-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

select {
  background: var(--white);
}
