:root {
  --navy: #12263f;
  --blue: #245b8f;
  --light-blue: #eaf2f8;
  --gold: #d1a443;
  --charcoal: #1d252d;
  --muted: #5d6b78;
  --border: #d9e1e8;
  --white: #ffffff;
  --off-white: #f7f9fb;
  --shadow: 0 24px 60px rgba(18, 38, 63, 0.14);
  --radius: 22px;
}

* { 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; }
img { max-width: 100%; height: auto; }

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
  z-index: 20;
}
.skip-link:focus { left: 12px; }

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

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}


.brand-logo {
  display: block;
  width: 132px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(18, 38, 63, 0.18);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 30px rgba(18, 38, 63, 0.18);
}

.brand-text { display: grid; line-height: 1.2; }
.brand-text strong { color: var(--navy); font-size: 1rem; }
.brand-text small { color: var(--muted); font-size: 0.78rem; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.94rem;
}
.site-nav a:hover { color: var(--blue); }

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(209, 164, 67, 0.22), transparent 28%),
    linear-gradient(135deg, #f8fbfd 0%, #eef5fa 55%, #ffffff 100%);
  padding: 92px 0 74px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -90px -170px auto;
  width: 460px;
  height: 460px;
  background: rgba(36, 91, 143, 0.12);
  border-radius: 999px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 48px;
  align-items: center;
}

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

h1, h2, h3 { color: var(--navy); line-height: 1.12; margin-top: 0; }
h1 { font-size: clamp(2.55rem, 6vw, 4.85rem); letter-spacing: -0.05em; margin-bottom: 22px; }
h2 { font-size: clamp(2rem, 4vw, 3.15rem); letter-spacing: -0.04em; margin-bottom: 18px; }
h3 { font-size: 1.22rem; margin-bottom: 12px; }

.lead {
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  color: #3d4e5d;
  max-width: 740px;
  margin-bottom: 28px;
}

.hero-actions, .cta-box {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: var(--gold);
  color: #17202a;
  box-shadow: 0 12px 28px rgba(209, 164, 67, 0.22);
}
.button-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--border);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}
.trust-list li {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--navy);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
  font-size: 0.88rem;
}

.hero-card, .panel, .profile-card, .contact-form, .thank-you-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 30px;
}
.hero-card h2 { font-size: 1.6rem; }
.contact-lines {
  display: grid;
  gap: 8px;
  margin: 22px 0;
}
.contact-lines a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}
.small-note { color: var(--muted); font-size: 0.94rem; margin-bottom: 0; }

.section { padding: 82px 0; }
.section-alt { background: var(--off-white); }

.intro-band {
  background: var(--navy);
  color: var(--white);
  padding: 54px 0;
}
.intro-band h2, .intro-band .eyebrow { color: var(--white); }
.intro-band p { color: rgba(255, 255, 255, 0.84); }
.intro-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: center;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}
.section-heading p:last-child { color: var(--muted); font-size: 1.05rem; }

.card-grid {
  display: grid;
  gap: 20px;
}
.card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--white);
  min-height: 220px;
}
.service-card p { color: var(--muted); margin-bottom: 0; }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  gap: 48px;
  align-items: center;
}
.reverse { grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr); }

.tick-list, .plain-list {
  padding-left: 0;
  list-style: none;
  margin: 24px 0 0;
}
.tick-list li, .plain-list li {
  position: relative;
  padding-left: 28px;
  margin: 12px 0;
}
.tick-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-weight: 900;
}
.plain-list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  top: 0;
  color: var(--gold);
  font-weight: 900;
}

.panel { padding: 32px; }
.profile-card {
  text-align: center;
  padding: 38px 28px;
}

.profile-logo {
  display: block;
  width: min(260px, 90%);
  height: auto;
  margin: 0 auto 24px;
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(18, 38, 63, 0.20);
}
.profile-initials {
  width: 112px;
  height: 112px;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  font-size: 2rem;
  font-weight: 900;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.steps article {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
}
.steps span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: var(--light-blue);
  color: var(--blue);
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 20px;
}
.steps p { color: var(--muted); margin-bottom: 0; }

.cta-section { padding: 56px 0; background: var(--navy); }
.cta-box {
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  padding: 34px;
  color: var(--white);
}
.cta-box h2, .cta-box .eyebrow { color: var(--white); }
.cta-box p { color: rgba(255,255,255,0.82); margin-bottom: 0; }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 46px;
  align-items: start;
}
.contact-boxes {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.contact-boxes div {
  border-left: 4px solid var(--gold);
  background: var(--off-white);
  padding: 16px 18px;
  border-radius: 12px;
}
.contact-boxes strong { display: block; color: var(--navy); }
.contact-boxes a { color: var(--blue); font-weight: 800; text-decoration: none; }

.contact-form {
  padding: 28px;
  display: grid;
  gap: 16px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 800;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  color: var(--charcoal);
  background: var(--white);
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: 3px solid rgba(36, 91, 143, 0.18);
  border-color: var(--blue);
}
.form-note { color: var(--muted); font-size: 0.86rem; margin: 0; }

.site-footer {
  background: #0c1a2b;
  color: rgba(255,255,255,0.84);
  padding: 34px 0;
}
.site-footer a { color: var(--white); text-decoration: none; }
.footer-grid, .footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}
.footer-grid p { margin: 6px 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  margin-top: 24px;
  padding-top: 18px;
  color: rgba(255,255,255,0.62);
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f8fbfd, #eaf2f8);
  padding: 24px 0;
}
.thank-you-card {
  max-width: 620px;
  padding: 44px;
  text-align: center;
}

.thank-you-card .brand-mark { margin-bottom: 22px; }
.thank-you-logo {
  display: block;
  width: min(280px, 90%);
  height: auto;
  margin: 0 auto 24px;
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(18, 38, 63, 0.18);
}


@media (max-width: 920px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 12px;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px; }
  .hero-grid, .intro-grid, .split, .reverse, .contact-grid { grid-template-columns: 1fr; }
  .card-grid.three, .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1120px); }
  .brand-logo { width: 104px; }
  .brand-text small { display: none; }
  .hero { padding: 58px 0; }
  .section { padding: 58px 0; }
  .card-grid.three, .steps { grid-template-columns: 1fr; }
  .hero-actions, .cta-box, .footer-grid, .footer-bottom { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .service-card { min-height: 0; }
  h1 { font-size: 2.7rem; }
}
