:root {
  --navy: #10263f;
  --navy-dark: #071724;
  --blue: #1b4f7a;
  --amber: #d88722;
  --amber-dark: #b66912;
  --text: #223044;
  --muted: #5f7083;
  --line: #dbe5ee;
  --soft: #f4f7fa;
  --soft-2: #f9fbfd;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(8, 28, 48, 0.12);
  --max: 1160px;
  --anchor-offset: 96px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

[id] {
  scroll-margin-top: var(--anchor-offset);
}

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

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

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(216, 135, 34, 0.45);
  outline-offset: 3px;
}

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

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

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

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

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

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 0.65rem;
  color: var(--navy);
  font-weight: 850;
  text-decoration: none;
}

.brand-mark-img {
  display: block;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-name {
  display: grid;
  color: #2b7faf;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  min-height: 42px;
  padding: 0.55rem 0.8rem;
  color: var(--navy);
  font: inherit;
  font-weight: 800;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

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

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

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

.button,
.button-secondary {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0.74rem 1.08rem;
  font: inherit;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  overflow-wrap: anywhere;
}

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

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

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

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

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

.hero,
.page-hero {
  background: linear-gradient(180deg, var(--soft-2) 0%, var(--white) 100%);
}

.page-hero {
  padding: 3rem 0;
}

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

.hero-copy {
  min-width: 0;
}

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

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--amber-dark);
  font-size: 0.84rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  max-width: 760px;
  font-size: 3.25rem;
}

h2 {
  font-size: 2.05rem;
}

h3 {
  font-size: 1.16rem;
}

p {
  margin: 0;
}

.lead {
  max-width: 740px;
  margin-top: 1.2rem;
  color: #354b63;
  font-size: 1.14rem;
  line-height: 1.65;
}

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

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

.trust-list li,
.check-list li {
  position: relative;
  padding-left: 1.55rem;
}

.trust-list li {
  color: var(--muted);
}

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

.section {
  padding: 4.25rem 0;
}

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

.section-soft {
  background: var(--soft-2);
  border-top: 1px solid #edf2f6;
  border-bottom: 1px solid #edf2f6;
}

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

.section-cta h2,
.section-cta p {
  color: var(--white);
}

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

.section-heading p,
.muted,
.form-note,
.footer-small,
.faq details p {
  color: var(--muted);
}

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

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

.card,
.panel,
.lead-form,
.faq details,
.trust-box,
.step {
  border-radius: var(--radius);
}

.card {
  display: block;
  min-width: 0;
  padding: 1.3rem;
  color: var(--text);
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--line);
}

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

.card h3 {
  margin-bottom: 0.65rem;
}

.link-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.2rem;
  padding: 0;
  list-style: none;
}

.link-cloud li {
  display: flex;
  min-width: 0;
}

.link-cloud a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0.42rem 0.68rem;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.link-cloud a:hover {
  border-color: var(--amber);
}

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

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

.insight-card h3 {
  margin-bottom: 0.55rem;
}

.related-layout {
  display: grid;
  gap: 1.35rem;
}

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

.related-columns h3 {
  margin-bottom: 0.75rem;
}

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

.content {
  min-width: 0;
}

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

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

.prose-block {
  margin-top: 1.25rem;
}

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

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

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

.panel {
  min-width: 0;
  padding: 1.45rem;
  background: var(--soft);
  border: 1px solid var(--line);
}

.panel-accent {
  background: #fff8ed;
  border-color: #f0d2a7;
}

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

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

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

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

.step {
  min-width: 0;
  padding: 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.step span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  color: var(--navy-dark);
  font-weight: 900;
  background: var(--amber);
  border-radius: 50%;
}

.step h3 {
  margin-bottom: 0.5rem;
}

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

.faq details {
  padding: 1.05rem 1.15rem;
  background: var(--white);
  border: 1px solid var(--line);
}

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

.faq details p {
  margin-top: 0.7rem;
}

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

.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;
  color: #91a2b3;
  content: "/";
}

.form-wrap {
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
}

.offer-focus {
  min-height: calc(100vh - 74px);
  padding: 2.6rem 0 4rem;
  background: linear-gradient(180deg, var(--soft-2) 0%, var(--white) 42%);
}

.offer-form-wrap {
  grid-template-columns: minmax(280px, 0.62fr) minmax(360px, 1fr);
  align-items: center;
}

.offer-intro {
  align-self: start;
  padding-top: 1rem;
}

.offer-intro h1 {
  font-size: 2.55rem;
}

.offer-intro .check-list {
  margin-top: 1.35rem;
}

.lead-form {
  display: grid;
  min-width: 0;
  gap: 1rem;
  padding: 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  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(--navy);
  font-weight: 850;
}

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

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

.required {
  color: #984b00;
}

.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;
}

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

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

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

.trust-box {
  max-width: 780px;
  margin-top: 1.25rem;
  padding: 0.95rem 1.05rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--amber);
}

.narrow {
  max-width: 820px;
}

.article-intro {
  color: #354b63;
  font-size: 1.12rem;
}

.article-meta {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.article-summary {
  margin: 1.4rem 0 2rem;
  padding: 1.25rem;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.article-note {
  margin: 1.5rem 0 2.1rem;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--amber);
  border-radius: var(--radius);
}

.article-summary h2,
.article-note h2 {
  margin-top: 0;
}

.article-summary p {
  margin-bottom: 0.85rem;
}

.article-summary ul {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.85rem;
}

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

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

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

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  max-width: 100%;
  margin-bottom: 0.9rem;
  color: #4da0cf;
  text-transform: uppercase;
}

.footer-logo img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.footer-logo span {
  display: grid;
  line-height: 1.05;
}

.footer-text {
  max-width: 460px;
  color: #cbd8e2;
}

.footer-small {
  max-width: 520px;
  margin-top: 0.9rem;
  color: #aebdcc;
  font-size: 0.9rem;
}

.sitelock-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 180px;
  margin: 0.9rem 0 0.1rem;
  padding: 0.35rem 0.45rem;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
}

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

.footer-small a,
.footer-links a {
  color: #d8e3ec;
}

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

.footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 0.35rem;
}

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

.footer-links a {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
  text-decoration: none;
}

.footer-links a:hover,
.footer-small a:hover {
  color: var(--amber);
}

@media (max-width: 980px) {
  .site-nav {
    gap: 0.7rem;
  }

  h1 {
    font-size: 2.65rem;
  }

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

@media (max-width: 1120px) {
  :root {
    --anchor-offset: 84px;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand {
    flex: 1 1 auto;
    max-width: calc(100% - 86px);
  }

  .nav-toggle {
    display: inline-flex;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .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(--white);
    border: 1px solid var(--line);
    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,
  .cta-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .offer-focus {
    min-height: 0;
    padding: 2rem 0 3.25rem;
  }

  .offer-intro {
    padding-top: 0;
  }

  .offer-intro h1 {
    max-width: 720px;
  }

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

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

@media (max-width: 560px) {
  :root {
    --anchor-offset: 78px;
  }

  .header-inner,
  .section-inner,
  .footer-inner {
    width: calc(100% - 1.5rem);
  }

  .brand-mark-img {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 0.86rem;
    max-width: 50vw;
  }

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

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

  .lead {
    font-size: 1.04rem;
  }

  .section {
    padding: 3.1rem 0;
  }

  .offer-focus {
    padding: 1.5rem 0 2.5rem;
  }

  .offer-intro h1 {
    font-size: 2rem;
  }

  .offer-intro .check-list {
    margin-top: 1rem;
  }

  .page-hero {
    padding: 2.4rem 0;
  }

  .hero-actions,
  .section-actions {
    flex-direction: column;
  }

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

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

  .card,
  .panel,
  .lead-form,
  .step,
  .faq details {
    padding: 1.05rem;
  }
}
