:root {
  --navy: #061936;
  --navy-2: #0d2c5c;
  --blue: #4aaefc;
  --sky: #e8f5ff;
  --paper: #ffffff;
  --soft: #f5f9fd;
  --ink: #142135;
  --muted: #637187;
  --line: #dbe6f2;
  --shadow: 0 24px 70px rgba(6, 25, 54, 0.14);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 42%, #ffffff 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.9);
  border-bottom: 1px solid rgba(219,230,242,.9);
  backdrop-filter: blur(18px);
}
.nav {
  width: min(1180px, calc(100% - 40px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 255px;
}
.brand img { width: 84px; height: auto; }
.brand strong { display: block; color: var(--navy); font-size: 1.05rem; letter-spacing: -.02em; }
.brand small { display: block; color: var(--muted); font-size: .78rem; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 22px; font-weight: 800; font-size: .93rem; color: var(--navy); }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--blue); }
.nav-toggle { display: none; background: white; border: 1px solid var(--line); border-radius: 999px; padding: 10px 14px; font-weight: 900; color: var(--navy); }

.hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 82px 0 42px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .72fr);
  gap: 42px;
  align-items: center;
}
.eyebrow {
  margin: 0;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 950;
}
h1 {
  margin: 12px 0 18px;
  color: var(--navy);
  font-size: clamp(2.65rem, 6vw, 5.75rem);
  line-height: .92;
  letter-spacing: -.075em;
}
.hero-copy {
  max-width: 760px;
  margin: 0 0 28px;
  color: #4f5f75;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.72;
}
.hero-actions, .contact-options { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 950;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: .96rem;
}
.button.primary { background: var(--navy); color: white; box-shadow: 0 15px 35px rgba(6,25,54,.18); }
.button.primary:hover { background: var(--navy-2); }
.button.secondary, .card-button { background: white; color: var(--navy); border-color: var(--line); }
.button.secondary:hover, .card-button:hover { border-color: var(--blue); }
.button.full { width: 100%; }
.service-pills {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.service-pills span {
  background: var(--sky);
  color: var(--navy);
  border: 1px solid #c8e8ff;
  border-radius: 999px;
  padding: 9px 13px;
  font-size: .88rem;
  font-weight: 850;
}
.hero-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #ffffff 0%, #f7fbff 55%, #e8f5ff 100%);
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.hero-card::before {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(74,174,252,.42), rgba(74,174,252,0) 70%);
}
.hero-card img { width: min(330px, 100%); margin: 0 auto 20px; }
.hero-card h2 { margin: 0 0 10px; color: var(--navy); font-size: 1.45rem; }
.hero-card p { margin: 0; color: var(--muted); line-height: 1.75; }
.hero-card a { display: inline-flex; margin-top: 22px; color: var(--navy); font-weight: 950; text-decoration: none; border-bottom: 2px solid var(--blue); }

.included-band {
  width: min(1180px, calc(100% - 40px));
  margin: 12px auto 22px;
  padding: 26px;
  display: grid;
  grid-template-columns: .7fr 1fr;
  gap: 26px;
  align-items: center;
  background: var(--navy);
  color: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.included-band h2 { margin: 9px 0 0; font-size: clamp(1.7rem, 3vw, 2.65rem); letter-spacing: -.05em; }
.included-band p:last-child { margin: 0; color: #d6e6f8; line-height: 1.75; }

.section { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 72px 0; }
.section-heading { max-width: 790px; margin-bottom: 28px; }
.section-heading.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading h2, .split-copy h2, .quote-copy h2 {
  margin: 10px 0 12px;
  color: var(--navy);
  font-size: clamp(2rem, 4.2vw, 3.45rem);
  line-height: 1.02;
  letter-spacing: -.055em;
}
.section-heading p:not(.eyebrow), .split-copy p, .quote-copy p { color: var(--muted); line-height: 1.75; font-size: 1.05rem; }

.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.package-card, .addon-card, .notice-card, .quote-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 35px rgba(6,25,54,.06);
}
.package-card {
  padding: 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.package-card.featured { border-color: rgba(74,174,252,.9); box-shadow: var(--shadow); transform: translateY(-8px); }
.popular {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--navy);
  color: white;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.package-tag {
  display: inline-flex;
  width: fit-content;
  background: var(--sky);
  color: var(--navy);
  border: 1px solid #c8e8ff;
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 950;
  font-size: .83rem;
}
.package-card h3, .addon-card h3, .notice-card h3 { color: var(--navy); font-size: 1.48rem; margin: 18px 0 10px; }
.package-card p { color: var(--muted); line-height: 1.65; margin: 0 0 16px; }
ul { padding-left: 20px; margin: 0 0 24px; color: #45556c; line-height: 1.8; }
li strong { color: var(--navy); }
.card-button { margin-top: auto; }

.add-ons { padding-top: 40px; }
.addon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.addon-card { padding: 24px; }
.addon-card span {
  display: inline-flex;
  color: var(--blue);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .73rem;
}
.addon-card h3 { margin-top: 12px; }
.addon-card p { color: var(--muted); line-height: 1.72; margin: 0; }

.split { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 28px; align-items: start; }
.process-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 26px; }
.process-grid div {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
}
.process-grid strong { color: var(--blue); font-size: .9rem; }
.process-grid h3 { margin: 10px 0 8px; color: var(--navy); }
.process-grid p { margin: 0; font-size: .96rem; }
.notice-card {
  padding: 26px;
  background: linear-gradient(180deg, #071b3c 0%, #0c2c5a 100%);
  color: white;
  position: sticky;
  top: 112px;
}
.notice-card h3 { color: white; margin-top: 0; }
.notice-card p { color: #d7e7f9; line-height: 1.75; margin-bottom: 0; }

.expectation-section { padding-top: 48px; }
.expect-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.expect-card {
  background: linear-gradient(135deg, #ffffff 0%, #f5fbff 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 10px 35px rgba(6,25,54,.06);
}
.expect-card span {
  display: inline-flex;
  color: var(--blue);
  font-weight: 950;
  letter-spacing: .12em;
  font-size: .82rem;
}
.expect-card h3 { color: var(--navy); font-size: 1.32rem; margin: 14px 0 8px; }
.expect-card p { color: var(--muted); line-height: 1.72; margin: 0; }

.quote-section { padding-top: 50px; }
.quote-card {
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: 30px;
  padding: 30px;
  background: linear-gradient(135deg, #ffffff 0%, #eef8ff 100%);
}
.contact-options { margin-top: 22px; }
.contact-options a {
  text-decoration: none;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 14px;
  color: var(--navy);
  font-weight: 850;
}
.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
}
label, legend { color: var(--navy); font-weight: 850; font-size: .92rem; }
input, select, textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
  background: #fbfdff;
}
textarea { resize: vertical; }
fieldset {
  grid-column: 1 / -1;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 14px;
}
fieldset label {
  display: flex;
  gap: 8px;
  align-items: center;
  font-weight: 700;
  color: #45556c;
}
fieldset input { width: auto; margin: 0; }
.full-span, .form-note, .quote-form .button { grid-column: 1 / -1; }
.form-note {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  background: var(--sky);
  border: 1px solid #c8e8ff;
  border-radius: 14px;
  padding: 11px 13px;
}

.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 20px auto 36px;
  border-top: 1px solid var(--line);
  padding-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
}
.site-footer > div:first-child { display: flex; align-items: center; gap: 14px; }
.site-footer img { width: 90px; }
.site-footer p { margin: 0; line-height: 1.55; }
.site-footer strong { color: var(--navy); }
.footer-links { display: flex; gap: 16px; font-weight: 850; color: var(--navy); }
.footer-links a { text-decoration: none; }

@media (max-width: 980px) {
  .hero, .included-band, .split, .quote-card { grid-template-columns: 1fr; }
  .package-grid, .addon-grid { grid-template-columns: 1fr; }
  .package-card.featured { transform: none; }
  .expect-grid { grid-template-columns: 1fr; }
  .notice-card { position: static; }
}

@media (max-width: 760px) {
  .nav { width: min(100% - 28px, 1180px); min-height: 76px; }
  .brand { min-width: 0; }
  .brand img { width: 70px; }
  .brand small { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 14px;
    right: 14px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 14px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px; }
  .hero, .section, .included-band, .site-footer { width: min(100% - 28px, 1180px); }
  .hero { padding-top: 52px; }
  h1 { font-size: clamp(2.55rem, 13vw, 4.4rem); }
  .section { padding: 52px 0; }
  .process-grid, .quote-form, fieldset, .expect-grid { grid-template-columns: 1fr; }
  .quote-card { padding: 18px; }
  .site-footer { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; }
}
