:root {
  --navy: #06264a;
  --navy-2: #0d355f;
  --green: #3f6f2a;
  --green-2: #5a8d3c;
  --cream: #f7f3ea;
  --white: #ffffff;
  --text: #1f2937;
  --muted: #667085;
  --line: #ded8cc;
  --shadow: 0 22px 60px rgba(6, 38, 74, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 84px 0; }
.section-sm { padding: 56px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 234, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(222, 216, 204, .9);
}
.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; color: var(--navy); }
.brand img { width: 54px; height: 54px; object-fit: contain; border-radius: 50%; }
.brand span { font-size: 1.1rem; letter-spacing: -.02em; }
.nav-links { display: flex; align-items: center; gap: 24px; font-size: .96rem; font-weight: 700; color: #344054; }
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.nav-cta { background: var(--navy); color: var(--white) !important; padding: 11px 18px; border-radius: 999px; box-shadow: 0 10px 24px rgba(6,38,74,.18); }

.hero { padding: 96px 0 80px; position: relative; overflow: hidden; }
.hero:before {
  content: "";
  position: absolute;
  inset: -220px -120px auto auto;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(63,111,42,.20), rgba(6,38,74,.08), transparent 68%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 54px; position: relative; }
.eyebrow { color: var(--green); text-transform: uppercase; letter-spacing: .13em; font-size: .78rem; font-weight: 800; margin: 0 0 14px; }
h1, h2, h3 { color: var(--navy); margin: 0; line-height: 1.1; }
h1 { font-size: clamp(2.65rem, 6vw, 5.2rem); letter-spacing: -.06em; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -.045em; }
h3 { font-size: 1.25rem; }
.lead { font-size: 1.18rem; color: var(--muted); margin: 22px 0 30px; max-width: 700px; }
.actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 13px 20px; border-radius: 999px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--navy); color: var(--white); box-shadow: 0 16px 34px rgba(6,38,74,.22); }
.btn-secondary { border: 1px solid var(--line); background: var(--white); color: var(--navy); }
.hero-logo-card { background: var(--white); border: 1px solid var(--line); border-radius: 34px; padding: 32px; box-shadow: var(--shadow); }
.hero-logo-card img { width: min(420px, 100%); margin: 0 auto; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.trust-row span { background: rgba(255,255,255,.78); border: 1px solid var(--line); color: var(--navy); border-radius: 999px; padding: 8px 12px; font-weight: 700; font-size: .9rem; }

.page-hero { background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: var(--white); padding: 84px 0; }
.page-hero h1, .page-hero .eyebrow { color: var(--white); }
.page-hero .lead { color: rgba(255,255,255,.82); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px; align-items: center; }
.card { background: var(--white); border: 1px solid var(--line); border-radius: 26px; padding: 28px; box-shadow: 0 14px 34px rgba(6,38,74,.06); }
.card h3 { margin-bottom: 10px; }
.card p { margin: 0; color: var(--muted); }
.card ul { margin: 14px 0 0; padding-left: 19px; color: var(--muted); }
.card li { margin: 7px 0; }
.section-head { margin-bottom: 34px; max-width: 760px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

.banner { background: var(--navy); color: var(--white); border-radius: 34px; padding: 42px; display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; }
.banner h2 { color: var(--white); }
.banner p { color: rgba(255,255,255,.82); margin: 14px 0 0; }

.about-photo { border-radius: 32px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--white); }
.about-photo img { width: 100%; height: 580px; object-fit: cover; object-position: center top; }
.bio-list { display: grid; gap: 12px; margin-top: 24px; }
.bio-list div { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 16px 18px; font-weight: 700; color: var(--navy); }

.price-card { position: relative; }
.price { font-size: 2.4rem; line-height: 1; color: var(--navy); font-weight: 900; margin: 16px 0 8px; }
.price span { font-size: 1rem; color: var(--muted); font-weight: 700; }
.featured { border: 2px solid var(--green); transform: translateY(-10px); }
.badge { display: inline-block; background: rgba(63,111,42,.10); color: var(--green); border: 1px solid rgba(63,111,42,.24); padding: 6px 10px; border-radius: 999px; font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.note { color: var(--muted); font-size: .95rem; margin-top: 22px; }

.contact-box { background: var(--white); border: 1px solid var(--line); border-radius: 34px; padding: 34px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.full { grid-column: 1 / -1; }
label { font-weight: 800; color: var(--navy); font-size: .9rem; display: block; margin-bottom: 7px; }
input, textarea, select { width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: 13px 14px; font: inherit; background: #fff; }
textarea { min-height: 132px; resize: vertical; }
button.btn { border: 0; cursor: pointer; font: inherit; }

.footer { background: #041d38; color: rgba(255,255,255,.82); padding: 42px 0; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; }
.footer strong { color: var(--white); }
.footer a { color: var(--white); font-weight: 700; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }

@media (max-width: 840px) {
  .nav { align-items: flex-start; flex-direction: column; padding: 14px 0; }
  .nav-links { width: 100%; flex-wrap: wrap; gap: 14px; }
  .hero-grid, .grid-2, .banner { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .featured { transform: none; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .hero { padding: 64px 0; }
  .about-photo img { height: auto; }
}


@media (max-width: 600px) {
  .container { width: min(100% - 28px, 1120px); }
  .site-header { position: static; }
  .nav { min-height: auto; gap: 12px; }
  .brand img { width: 46px; height: 46px; }
  .brand span { font-size: 1rem; }
  .nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    font-size: .92rem;
  }
  .nav-links a {
    background: rgba(255,255,255,.7);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 9px 10px;
    text-align: center;
  }
  .nav-links .nav-cta { grid-column: 1 / -1; padding: 11px 14px; }
  .hero { padding: 48px 0 44px; }
  h1 { font-size: clamp(2.25rem, 13vw, 3.2rem); }
  h2 { font-size: clamp(1.75rem, 9vw, 2.5rem); }
  .lead { font-size: 1.05rem; }
  .actions { flex-direction: column; }
  .btn { width: 100%; }
  .hero-logo-card { padding: 20px; border-radius: 24px; }
  .card, .contact-box { padding: 22px; border-radius: 22px; }
  .banner { padding: 28px; border-radius: 24px; }
  .page-hero { padding: 58px 0; }
  .section-sm { padding: 42px 0; }
  .section { padding: 50px 0; }
  .footer-links { gap: 10px; }
}

.contact-cards { display: grid; gap: 14px; margin-top: 20px; }
.contact-cards .card { margin: 0; }
.footer a { color: inherit; }
