:root {
  --color-navy: #0f2742;
  --color-navy-dark: #071827;
  --color-blue: #17466f;
  --color-gold: #d98b1f;
  --color-gold-dark: #b86f10;
  --color-gray: #f3f6f8;
  --color-border: #dce5ec;
  --color-text: #213044;
  --color-muted: #5d6f82;
  --color-white: #ffffff;
  --shadow: 0 18px 45px rgba(10, 30, 52, 0.12);
  --radius: 8px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  background: var(--color-white);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-blue);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--color-gold-dark);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(217, 139, 31, 0.45);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -10rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  background: var(--color-white);
  color: var(--color-navy);
  border: 2px solid var(--color-gold);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

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

.header-inner,
.section-inner,
.footer-inner {
  width: calc(100% - 2rem);
  max-width: var(--max-width);
  margin: 0 auto;
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: var(--color-navy);
  font-weight: 800;
  font-size: 1.12rem;
  text-decoration: none;
  line-height: 1;
}

.brand-logo {
  width: 290px;
  max-width: 58vw;
  height: auto;
  max-height: 44px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  flex: 0 0 auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
  color: var(--color-navy);
  font: inherit;
  padding: 0.55rem 0.75rem;
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

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

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

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1.1rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  overflow-wrap: break-word;
  cursor: pointer;
}

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

.button:hover {
  color: var(--color-navy-dark);
  background: #e7a34a;
  border-color: #e7a34a;
}

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

.button-secondary:hover {
  color: var(--color-navy);
  border-color: var(--color-gold);
}

.header-cta {
  min-height: 40px;
  padding: 0.55rem 0.85rem;
}

.hero {
  background: linear-gradient(180deg, #f8fbfd 0%, #ffffff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.86fr);
  gap: 3rem;
  align-items: center;
  padding: 3.35rem 0 2.4rem;
}

.hero-copy {
  min-width: 0;
  max-width: 680px;
}

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--color-navy);
  line-height: 1.14;
  overflow-wrap: break-word;
}

h1 {
  font-size: clamp(2.15rem, 4.4vw, 3.9rem);
  max-width: 760px;
}

.page-title {
  max-width: 760px;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

h3 {
  font-size: 1.18rem;
  line-height: 1.25;
}

p {
  margin: 0;
  overflow-wrap: break-word;
}

.lead {
  margin-top: 1.25rem;
  color: #344960;
  font-size: 1.15rem;
  max-width: 720px;
  line-height: 1.65;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.trust-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.7rem 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  position: relative;
  padding-left: 1.55rem;
  color: var(--color-muted);
}

.trust-list li::before {
  position: absolute;
  left: 0;
  top: 0.22rem;
  width: 0.8rem;
  height: 0.8rem;
  content: "";
  background: var(--color-gold);
  border-radius: 50%;
}

.hero-media {
  position: relative;
  min-width: 0;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-note {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  max-width: 280px;
  padding: 0.9rem 1rem;
  color: var(--color-white);
  background: rgba(15, 39, 66, 0.92);
  border-radius: var(--radius);
  font-weight: 700;
}

.section {
  padding: 4.5rem 0;
}

.hero + .section {
  padding-top: 2rem;
}

.section-muted {
  background: var(--color-gray);
}

.section-soft {
  background: #f8fbfd;
  border-top: 1px solid #edf3f7;
  border-bottom: 1px solid #edf3f7;
}

.section-navy {
  color: var(--color-white);
  background: var(--color-navy);
}

.section-navy h2,
.section-navy h3,
.section-navy p,
.section-navy a {
  color: var(--color-white);
}

.section-heading {
  display: grid;
  gap: 0.75rem;
  max-width: 760px;
  margin-bottom: 1.75rem;
}

.section-heading p {
  color: var(--color-muted);
}

.section-navy .section-heading p,
.section-navy .muted {
  color: #d8e3ec;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  min-width: 0;
  padding: 1.35rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

a.card {
  display: block;
  color: var(--color-text);
  text-decoration: none;
}

a.card:hover {
  color: var(--color-text);
  border-color: var(--color-gold);
}

a.card h3,
a.card .card-title {
  color: var(--color-navy);
}

.card-title-link {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--color-navy);
  font-size: 1.18rem;
  font-weight: 850;
  line-height: 1.25;
  text-decoration: none;
}

.card-title-link:hover {
  color: var(--color-gold-dark);
}

.section-muted .card {
  background: #ffffff;
}

.section-navy .card {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.section-navy .card p {
  color: #e6eef5;
}

.card h3,
.card-title {
  margin-bottom: 0.7rem;
}

.card-title {
  color: var(--color-navy);
  font-size: 1.18rem;
  font-weight: 850;
  line-height: 1.25;
}

.card p,
.panel p,
.faq details p,
.trust-box p,
.form-note,
.legal-note,
.muted {
  line-height: 1.65;
}

.check-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.7rem;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.08rem;
  color: var(--color-gold-dark);
  content: "\2713";
  font-weight: 900;
}

.number-list {
  margin: 0;
  padding-left: 1.3rem;
}

.number-list li + li {
  margin-top: 0.6rem;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.48fr);
  gap: 2rem;
  align-items: start;
}

.panel {
  min-width: 0;
  padding: 1.5rem;
  background: var(--color-gray);
  border-radius: var(--radius);
}

.funnel-panel {
  max-width: 760px;
  margin-top: 1.4rem;
  padding: 1.25rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.funnel-panel .form-note {
  margin-top: 0.85rem;
}

.trust-box {
  max-width: 760px;
  margin-top: 1.25rem;
  padding: 0.95rem 1.1rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-gold);
  border-radius: var(--radius);
}

.trust-box p {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.trust-box a {
  display: inline-flex;
  margin-top: 0.35rem;
  font-size: 0.95rem;
  font-weight: 800;
}

.panel h2,
.panel h3 {
  margin-bottom: 0.7rem;
}

.content {
  min-width: 0;
}

.content > p,
.content > ul,
.content > ol {
  max-width: 760px;
}

.content h2 {
  margin-top: 2.25rem;
}

.content h2:first-child {
  margin-top: 0;
}

.content h2 + p,
.content h3 + p,
.content h2 + ul,
.content h3 + ul {
  margin-top: 1rem;
}

.panel p + p,
.content p + p,
.content ul + p,
.content p + ul {
  margin-top: 1rem;
}

.content .muted + .panel,
.content .panel + .panel {
  margin-top: 1.35rem;
}

.two-column p + p {
  margin-top: 1rem;
}

.faq {
  display: grid;
  gap: 0.9rem;
}

.faq details {
  padding: 1.1rem 1.2rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.faq summary {
  color: var(--color-navy);
  font-weight: 800;
  cursor: pointer;
}

.faq details p {
  margin-top: 0.75rem;
  color: var(--color-muted);
}

.breadcrumb {
  margin: 0 0 1rem;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li:not(:last-child)::after {
  margin-left: 0.4rem;
  content: "/";
  color: #8fa0ae;
}

.page-hero {
  padding: 3rem 0;
  background: linear-gradient(180deg, #f8fbfd 0%, #ffffff 100%);
}

.form-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  gap: 2rem;
  align-items: start;
}

.lead-form {
  display: grid;
  min-width: 0;
  gap: 1rem;
  padding: 1.4rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label,
.checkbox label {
  color: var(--color-navy);
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.72rem 0.78rem;
  color: var(--color-text);
  font: inherit;
  background: var(--color-white);
  border: 1px solid #b9c8d5;
  border-radius: var(--radius);
}

.field textarea {
  min-height: 115px;
  resize: vertical;
}

.field small,
.form-note,
.legal-note,
.muted {
  color: var(--color-muted);
}

.required {
  color: #9f4f00;
}

.checkbox {
  display: grid;
  grid-template-columns: 1.2rem 1fr;
  gap: 0.65rem;
  align-items: start;
}

.checkbox input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.25rem;
}

.form-alert {
  display: none;
  padding: 0.85rem 1rem;
  color: #5c2600;
  background: #fff2df;
  border: 1px solid #efc386;
  border-radius: var(--radius);
  font-weight: 700;
}

.form-alert.is-visible {
  display: block;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.info-list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-list strong {
  color: var(--color-navy);
}

.site-footer {
  color: #d8e3ec;
  background: var(--color-navy-dark);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.55fr);
  gap: 2rem;
  padding: 2.35rem 0;
}

.footer-brand {
  margin-bottom: 0.55rem;
  color: var(--color-white);
  font-size: 1.1rem;
  font-weight: 800;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 1.4rem;
}

.footer-links a {
  display: block;
  margin-top: 0.35rem;
  color: #d8e3ec;
  font-weight: 650;
  font-size: 0.9rem;
  line-height: 1.45;
  text-decoration: none;
}

.footer-city-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.65rem;
}

.footer-city-links a {
  display: inline-flex;
  margin-top: 0;
  white-space: nowrap;
}

.footer-links a:hover {
  color: var(--color-gold);
}

.footer-small {
  margin-top: 1rem;
  color: #aebfcd;
  font-size: 0.9rem;
}

.footer-heading {
  margin-bottom: 0.65rem;
  color: var(--color-white);
  font-size: 0.92rem;
  font-weight: 850;
}

.footer-text {
  max-width: 430px;
  color: #c6d4df;
}

.footer-cta {
  display: flex;
  width: max-content;
  max-width: 100%;
  margin-top: 1rem;
  color: var(--color-gold);
  font-weight: 850;
  text-decoration: none;
}

.footer-cta:hover {
  color: var(--color-white);
}

.footer-badge {
  display: flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  margin-top: 1rem;
  padding: 0.35rem;
  background: var(--color-white);
  border-radius: 6px;
}

.footer-badge img {
  width: 104px;
  max-width: 100%;
  height: auto;
}

@media (max-width: 860px) {
  .header-inner {
    min-height: 68px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.7rem;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 0.72rem;
  }

  .header-cta {
    width: 100%;
  }

  .hero-grid,
  .two-column,
  .form-wrap,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding: 3rem 0 3.2rem;
  }

  h1 {
    max-width: 760px;
  }

  .grid-2,
  .grid-3,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .header-inner,
  .section-inner,
  .footer-inner {
    width: calc(100% - 1.5rem);
  }

  .section {
    padding: 3.25rem 0;
  }

  h1 {
    font-size: 1.85rem;
    overflow-wrap: anywhere;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  h2 {
    font-size: 1.55rem;
    overflow-wrap: anywhere;
  }

  .lead {
    font-size: 1.05rem;
  }

  .brand-logo {
    max-width: 56vw;
  }

  .button,
  .button-secondary {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }

  .hero-note {
    position: static;
    max-width: none;
    margin-top: 0.75rem;
  }

  .button,
  .button-secondary {
    width: 100%;
  }

  .card,
  .panel,
  .funnel-panel,
  .trust-box,
  .lead-form {
    padding: 1.1rem;
  }
}
