:root {
  --navy: #002B5C;
  --deep: #001A38;
  --primary: #002B5C;
  --blue-mid: #174A7C;
  --blush: #C9A14A;
  --blush-soft: #F8F4EA;
  --cream: #FFFFFF;
  --champagne: #C9A14A;
  --champagne-soft: #F4E8C8;
  --ink: #061A33;
  --text: #243246;
  --muted: #607083;
  --line: #E5E9EF;
  --soft: #F7F9FC;
  --white: #ffffff;
  --shadow: 0 26px 80px rgba(0, 43, 92, 0.14);
  --shadow-strong: 0 32px 90px rgba(0, 26, 56, 0.28);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,249,252,0.88) 48%, rgba(255,255,255,0.98)),
    var(--cream);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.62;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(229, 233, 239, 0.92);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #10233B;
  font-size: 13px;
  font-weight: 700;
}

.mobile-header-cta {
  display: none;
}

.mobile-only-break {
  display: none;
}

.nav-links a:not(.nav-cta) {
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--champagne);
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.btn,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #E4C66E, var(--champagne) 48%, #A77E2B);
  color: #061A33;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(201, 161, 74, 0.26);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #EACE80, #C9A14A);
  box-shadow: 0 20px 48px rgba(201, 161, 74, 0.34);
}

.btn.secondary,
.link-btn {
  background: transparent;
  color: var(--primary);
  box-shadow: none;
}

.btn.secondary {
  border: 1px solid rgba(0, 43, 92, 0.22);
  background: rgba(255, 255, 255, 0.66);
  color: var(--primary);
}

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

.page {
  min-height: 70vh;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0,26,56,0.98) 0%, rgba(0,43,92,0.96) 54%, rgba(247,249,252,0.94) 54%, rgba(255,255,255,0.98) 100%),
    var(--deep);
}

.hero::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: min(42vw, 560px);
  height: 100%;
  content: "";
  background:
    linear-gradient(90deg, rgba(201,161,74,0.18), transparent 1px),
    linear-gradient(180deg, rgba(201,161,74,0.12), transparent 1px);
  background-size: 76px 76px;
  opacity: 0.34;
  pointer-events: none;
}

.hero-inner,
.section,
.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  position: relative;
  z-index: 1;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 54px;
  align-items: center;
  min-height: 600px;
  padding: 58px 0 66px;
}

.hero-copy {
  padding: 24px 0;
  min-width: 0;
}

.hero .eyebrow,
.hero h1 {
  color: var(--white);
}

.hero .eyebrow {
  color: #F0D998;
}

.hero .lead {
  color: #DDE8F5;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--blue-mid);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  letter-spacing: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
}

h1 {
  max-width: 860px;
  font-size: clamp(38px, 4.6vw, 62px);
  line-height: 1.12;
}

.hero h1 {
  max-width: 620px;
  font-size: clamp(34px, 3.45vw, 48px);
  line-height: 1.08;
}

h2 {
  max-width: 850px;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.16;
}

h3 {
  font-size: 21px;
  line-height: 1.2;
}

.lead {
  max-width: 720px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.72;
}

.hero .lead {
  max-width: 590px;
  margin-top: 18px;
  font-size: clamp(16px, 1.28vw, 18px);
  line-height: 1.66;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

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

.portrait-frame,
.photo-card {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(201, 161, 74, 0.48);
  background: var(--white);
  box-shadow: var(--shadow-strong);
}

.portrait-frame img,
.photo-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  padding: clamp(18px, 4vw, 44px);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 1px;
  width: min(1080px, calc(100% - 40px));
  margin: -42px auto 42px;
  border: 1px solid rgba(229, 233, 239, 0.95);
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 24px 70px rgba(0, 43, 92, 0.14);
  position: relative;
  z-index: 2;
}

.stats div {
  display: flex;
  min-height: 148px;
  flex-direction: column;
  justify-content: flex-start;
  padding: 26px;
  background: rgba(255,255,255,0.94);
}

.stats strong {
  display: block;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.2;
}

.stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.section {
  padding: 78px 0;
}

.section.narrow {
  max-width: 880px;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 34px;
}

.section-header p {
  max-width: 420px;
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 32px;
}

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

.resource-hero,
.article-hero {
  background:
    linear-gradient(135deg, rgba(0, 26, 56, 0.98), rgba(0, 43, 92, 0.93) 58%, rgba(201, 161, 74, 0.34)),
    var(--deep);
  color: var(--white);
}

.resource-hero .section,
.article-hero .section {
  padding: 74px 0;
}

.resource-hero h1,
.resource-hero .eyebrow,
.resource-hero .lead,
.article-hero h1,
.article-hero .eyebrow,
.article-hero .lead {
  color: var(--white);
}

.resource-hero .lead,
.article-hero .lead {
  max-width: 760px;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.resource-list-section.reveal {
  opacity: 1;
  transform: none;
}

.resource-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 38px rgba(0, 43, 92, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.resource-card:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 161, 91, 0.55);
  box-shadow: 0 22px 54px rgba(0, 43, 92, 0.13);
}

.resource-card img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
}

.resource-card span,
.back-link {
  display: inline-flex;
  margin: 22px 24px 8px;
  color: var(--blue-mid);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.back-link {
  margin: 0 0 18px;
  color: #F0D998;
}

.resource-card h3 {
  padding: 0 24px;
  overflow-wrap: break-word;
}

.resource-card p {
  padding: 12px 24px 26px;
  color: var(--muted);
  overflow-wrap: break-word;
}

.article-feature {
  width: min(900px, 100%);
  margin-top: 34px;
  border: 1px solid rgba(201, 161, 74, 0.42);
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
}

.article-meta {
  margin-top: 14px;
  color: #F0D998;
  font-size: 13px;
  font-weight: 800;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 48px;
  align-items: start;
}

.article-layout.reveal {
  opacity: 1;
  transform: none;
}

.article-content {
  max-width: 760px;
  min-width: 0;
}

.article-content h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: clamp(24px, 2.4vw, 34px);
}

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

.article-content a:not(.btn) {
  color: var(--primary);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.article-content li {
  margin: 10px 0;
}

.article-content p,
.article-content li {
  overflow-wrap: anywhere;
}

.article-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.article-inline-cta,
.article-related-bottom,
.local-proof {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 252, 0.58)),
    var(--white);
  box-shadow: 0 14px 38px rgba(0, 43, 92, 0.08);
}

.article-inline-cta {
  margin: 30px 0;
}

.article-inline-cta strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.2;
}

.article-inline-cta p {
  margin-bottom: 16px;
}

.article-related-bottom {
  display: none;
  gap: 10px;
  margin-top: 34px;
}

.article-related-bottom h2 {
  margin: 0 0 4px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-related-bottom a {
  color: var(--primary);
  font-weight: 800;
}

.article-faq {
  display: grid;
  gap: 12px;
  margin: 18px 0 34px;
}

.article-faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 26px rgba(0, 43, 92, 0.06);
}

.article-faq summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--navy);
  font-weight: 900;
  line-height: 1.35;
}

.article-faq p {
  padding: 0 20px 18px;
}

.article-aside {
  position: sticky;
  top: 100px;
  display: grid;
  min-width: 0;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(0, 43, 92, 0.08);
}

.article-aside h2 {
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-aside a {
  color: var(--primary);
  font-weight: 800;
}

.local-proof {
  margin-top: 28px;
  margin-bottom: 28px;
}

.local-proof .section-header {
  margin-bottom: 24px;
}

.local-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 4px;
}

.local-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 8px;
  background: var(--champagne-soft);
  color: #6D501D;
  font-size: 13px;
  font-weight: 900;
}

.roadmap-steps {
  display: grid;
  gap: 16px;
  margin: 28px 0 30px;
  counter-reset: roadmap;
}

.roadmap-steps div {
  position: relative;
  min-height: 122px;
  padding: 22px 24px 22px 88px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 252, 0.62)),
    var(--white);
  box-shadow: 0 12px 34px rgba(0, 43, 92, 0.07);
}

.roadmap-steps div::before {
  position: absolute;
  top: 62px;
  bottom: -18px;
  left: 45px;
  width: 2px;
  content: "";
  background: linear-gradient(180deg, var(--champagne), rgba(201, 161, 74, 0));
}

.roadmap-steps div:last-child::before {
  display: none;
}

.roadmap-steps span {
  position: absolute;
  top: 22px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: linear-gradient(135deg, #E4C66E, var(--champagne));
  color: var(--navy);
  font-weight: 900;
}

.roadmap-steps h3 {
  margin-bottom: 8px;
}

.roadmap-steps p {
  margin: 0;
  color: var(--muted);
}

.card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247, 249, 252, 0.5)),
    var(--white);
  box-shadow: 0 12px 36px rgba(0, 43, 92, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--primary), var(--blush), var(--champagne));
}

a.card:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 161, 91, 0.55);
  box-shadow: 0 20px 48px rgba(0, 43, 92, 0.12);
}

.card .num,
.card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 8px;
  background: var(--champagne-soft);
  color: #6D501D;
  font-weight: 800;
}

.card h3 {
  margin-bottom: 12px;
}

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

.dark-section {
  margin: 34px 0;
  padding: 90px 0;
  background:
    linear-gradient(135deg, rgba(0,26,56,0.99), rgba(0,43,92,0.97) 58%, rgba(23,74,124,0.86)),
    var(--deep);
  color: var(--white);
}

.dark-section .section {
  padding: 0;
}

.dark-section h2,
.dark-section h3 {
  color: var(--white);
}

.dark-section p {
  color: #DDE8F5;
}

.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.process div {
  padding: 28px;
  border: 1px solid rgba(201,161,74,0.22);
  border-radius: 8px;
  background: rgba(255,255,255,0.075);
  box-shadow: 0 18px 50px rgba(0,0,0,0.12);
}

.cta {
  width: min(1080px, calc(100% - 40px));
  margin: 70px auto 86px;
  padding: 58px 32px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0,26,56,0.98), rgba(0,43,92,0.96) 58%, rgba(201,161,74,0.58)),
    var(--navy);
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow);
}

.cta h2 {
  margin: 0 auto;
  color: var(--white);
}

.cta p {
  max-width: 620px;
  margin: 18px auto 26px;
  color: #DDE8F5;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.split > *,
.quote-layout > * {
  min-width: 0;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.feature-list div {
  padding: 18px 20px;
  border-left: 4px solid var(--champagne);
  background: rgba(247, 249, 252, 0.7);
}

.quote-hero {
  padding: 80px 0;
  background:
    linear-gradient(135deg, rgba(0,26,56,0.96), rgba(0,43,92,0.9) 46%, rgba(201,161,74,0.28)),
    var(--deep);
  color: var(--white);
}

.quote-hero h1,
.quote-hero .eyebrow,
.quote-hero .lead {
  color: var(--white);
}

.quote-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  align-items: start;
}

.quote-info {
  position: sticky;
  top: 100px;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid rgba(201,161,74,0.24);
  background:
    linear-gradient(145deg, rgba(0,26,56,0.98), rgba(0,43,92,0.94)),
    var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.quote-info h2 {
  color: var(--white);
  font-size: 30px;
}

.quote-info ul {
  padding-left: 20px;
}

.quote-info li {
  margin: 10px 0;
}

.note {
  padding: 18px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
}

.form {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,249,252,0.94)),
    var(--white);
  box-shadow: var(--shadow);
}

.form h2 {
  margin-bottom: 22px;
  font-size: 32px;
}

label {
  display: block;
  margin-bottom: 18px;
  color: var(--navy);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font: inherit;
  background: var(--white);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(111, 44, 122, 0.18);
  border-color: var(--blue-mid);
}

.form-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text);
  font-weight: 600;
}

.checkbox input {
  flex: 0 0 auto;
  width: auto;
  margin-top: 7px;
}

.checkbox span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.muted,
.small {
  color: var(--muted);
  font-size: 14px;
}

.trusted-partners {
  scroll-margin-top: 92px;
  padding: 72px 0 70px;
  border-top: 1px solid rgba(229, 233, 239, 0.88);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 252, 0.82)),
    var(--cream);
}

.trusted-partners-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
}

.trusted-partners h2 {
  max-width: 760px;
  margin: 0 auto 12px;
}

.trusted-partners-copy {
  max-width: 520px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.trusted-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 36px auto 0;
}

.trusted-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 128px;
  padding: 18px 14px;
  border: 1px solid rgba(229, 233, 239, 0.92);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 252, 0.92)),
    var(--white);
  box-shadow: 0 10px 30px rgba(0, 43, 92, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.trusted-logo-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 161, 74, 0.58);
  box-shadow: 0 18px 42px rgba(0, 43, 92, 0.11);
}

.trusted-logo-card img {
  width: 100%;
  max-width: 155px;
  max-height: 50px;
  object-fit: contain;
}

.trusted-logo-card span {
  display: block;
  margin-top: 12px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 26, 56, 0.99), rgba(0, 43, 92, 0.98) 56%, rgba(3, 33, 69, 0.99)),
    var(--deep);
  color: #EAF0F8;
}

.footer::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(201, 161, 74, 0.1), transparent 1px),
    linear-gradient(180deg, rgba(201, 161, 74, 0.08), transparent 1px);
  background-size: 84px 84px;
  opacity: 0.28;
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) minmax(150px, 0.7fr) minmax(270px, 1.05fr) minmax(210px, 0.85fr);
  gap: 36px;
  padding: 68px 0 42px;
}

.footer-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
}

.footer-brand-lockup img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 390px;
  color: #DDE8F5;
  font-size: 15px;
  line-height: 1.75;
}

.footer h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links,
.footer-contact,
.social-icons {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.footer-links a,
.footer-contact a,
.footer-contact span,
.social-icons a {
  color: #EAF0F8;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  transition: color 0.2s ease, transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #F0D998;
  transform: translateX(3px);
}

.footer-contact a,
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 32px;
  min-width: 0;
  overflow-wrap: normal;
  word-break: normal;
}

.footer-contact a[href^="tel:"],
.footer-contact a[href^="mailto:"] {
  white-space: nowrap;
}

.footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--champagne);
}

.footer-icon svg,
.social-icons svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 42px;
  padding: 4px 0;
  border: 0;
  background: transparent;
}

.social-icons .social-instagram {
  background: transparent;
}

.social-icons .social-instagram svg {
  color: #e1306c;
}

.social-icons .social-instagram:hover {
  background: transparent;
}

.social-icons .social-tiktok {
  background: transparent;
}

.social-icons .social-tiktok svg {
  color: #25f4ee;
  filter: drop-shadow(1px 1px 0 rgba(254, 44, 85, 0.95));
}

.social-icons .social-tiktok:hover {
  background: transparent;
}

.social-icons a:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  margin-top: 22px;
  padding: 12px 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, #E4C66E, var(--champagne) 48%, #A77E2B);
  color: #061A33;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(201, 161, 74, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(201, 161, 74, 0.3);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: #B8C4D3;
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.hero-copy,
.hero-visual {
  animation: fadeUp 0.8s ease both;
}

.hero-visual {
  animation-delay: 0.15s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .nav {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
  }

  .brand {
    justify-self: start;
    flex: 1 1 auto;
    min-width: 0;
  }

  .mobile-header-cta {
    display: inline-flex;
    flex: 0 0 auto;
    justify-self: center;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 9px 13px;
    border-radius: 8px;
    background: linear-gradient(135deg, #E4C66E, var(--champagne) 48%, #A77E2B);
    color: #061A33;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(201, 161, 74, 0.22);
  }

  .menu-toggle {
    display: inline-flex;
    flex: 0 0 44px;
    justify-self: end;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: fixed;
    top: 74px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 10px;
  }

  .nav-links a::after {
    display: none;
  }

  .hero-inner,
  .split,
  .quote-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .quote-layout .form {
    order: 1;
  }

  .quote-layout .guidance-info {
    order: 2;
  }

  .footer-grid {
    gap: 30px;
  }

  .hero-inner {
    min-height: auto;
    padding: 44px 0 58px;
  }

  .hero {
    background:
      linear-gradient(155deg, rgba(0,26,56,0.98), rgba(0,43,92,0.94) 58%, rgba(23,74,124,0.78)),
      var(--deep);
  }

  .hero::before {
    width: 100%;
  }

  .stats,
  .cards,
  .service-grid,
  .process,
  .resource-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .section-header {
    display: block;
  }

  .quote-info {
    position: static;
  }

  .article-aside {
    display: none;
    position: static;
  }

  .article-related-bottom {
    display: grid;
  }

  .hero-visual {
    display: grid;
    gap: 16px;
  }

  .hero .actions {
    display: none;
  }
}

@media (max-width: 620px) {
  .nav,
  .hero-inner,
  .section,
  .footer-inner {
    width: calc(100% - 28px);
    max-width: calc(100vw - 28px);
  }

  .nav {
    gap: 7px;
  }

  .brand {
    gap: 5px;
    flex: 0 1 auto;
  }

  .brand span {
    font-size: 14px;
  }

  .brand img {
    width: 32px;
    height: 32px;
  }

  .mobile-header-cta {
    flex: 0 0 auto;
    min-height: 31px;
    padding: 6px 7px;
    font-size: 9px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  h1 {
    font-size: 28px;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  h2 {
    font-size: 29px;
  }

  .lead {
    font-size: 16px;
    max-width: 320px;
    overflow-wrap: anywhere;
  }

  .hero-copy {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .hero h1 {
    max-width: 330px;
    font-size: 25px;
    line-height: 1.14;
  }

  .hero .lead {
    max-width: 330px;
    font-size: 15px;
    line-height: 1.58;
  }

  .actions {
    flex-direction: column;
  }

  .btn,
  .nav-cta {
    width: 100%;
  }

  .stats {
    width: calc(100% - 28px);
    margin: -24px auto 28px;
  }

  .form-two {
    grid-template-columns: 1fr;
  }

  .trusted-partners {
    padding: 50px 0 46px;
  }

  .trusted-partners-inner,
  .footer-bottom {
    width: calc(100% - 28px);
    max-width: calc(100vw - 28px);
  }

  .trusted-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .trusted-logo-card {
    min-height: 122px;
    padding: 16px 12px;
  }

  .footer-grid {
    padding: 52px 0 34px;
  }

  .footer-brand-lockup {
    align-items: flex-start;
    font-size: 18px;
  }

  .footer-links,
  .footer-contact,
  .social-icons {
    gap: 10px;
  }

  .social-icons a,
  .footer-cta {
    width: 100%;
  }

  .form,
  .quote-info,
  .card,
  .article-aside {
    padding: 24px;
  }

  .resource-hero .section,
  .article-hero .section {
    padding: 52px 0;
  }

  .resource-hero .section,
  .resource-list-section {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    overflow: hidden;
  }

  .resource-hero h1,
  .resource-hero .lead {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .resource-hero h1 {
    font-size: 27px;
    line-height: 1.16;
    text-wrap: balance;
  }

  .resource-list-section .section-header,
  .resource-list-section .section-header div,
  .resource-list-section .section-header h2,
  .resource-list-section .section-header p,
  .resource-grid,
  .resource-card {
    min-width: 0;
    max-width: 100%;
  }

  .resource-list-section .section-header h2,
  .resource-list-section .section-header p {
    overflow-wrap: break-word;
  }

  .resource-list-section .resource-card.reveal {
    opacity: 1;
    transform: none;
  }

  .article-layout {
    width: calc(100% - 28px);
    max-width: calc(100vw - 28px);
  }

  .article-content {
    width: 100%;
    max-width: 100%;
  }

  .article-cta {
    flex-direction: column;
  }

  .quote-layout {
    padding-top: 40px;
  }

  .form h2 {
    font-size: 25px;
    line-height: 1.14;
  }

  .mobile-only-break {
    display: block;
  }

  .cta {
    width: calc(100% - 28px);
    padding: 42px 22px;
  }
}

@media (max-width: 430px) {
  .form h2 {
    font-size: 23px;
  }
}

@media (max-width: 340px) {
  .nav {
    gap: 6px;
  }

  .brand span {
    font-size: 12px;
  }

  .brand img {
    width: 30px;
    height: 30px;
  }

  .mobile-header-cta {
    min-height: 30px;
    padding: 5px 6px;
    font-size: 8px;
  }

  .menu-toggle {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .hero-copy,
  .hero-visual {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
}
