:root {
  --ink: #172032;
  --muted: #647083;
  --line: #dfe6ef;
  --paper: #ffffff;
  --soft: #f4f7fb;
  --navy: #10294d;
  --blue: #1f6fb8;
  --cyan: #16a3c7;
  --gold: #d9a441;
  --green: #1f8f5f;
  --shadow: 0 24px 70px rgba(15, 37, 68, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 0 6vw;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(223, 230, 239, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 19px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(31, 111, 184, 0.22);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: #324052;
  font-size: 14px;
  font-weight: 800;
}

.site-nav a {
  padding: 28px 0;
  border-bottom: 2px solid transparent;
}

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

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 6px;
  font-weight: 900;
  cursor: pointer;
}

.header-action,
.button.primary {
  color: #fff;
  background: var(--blue);
}

.button.ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.button.full {
  width: 100%;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 44px;
  min-height: calc(100vh - 78px);
  padding: 86px 6vw 68px;
  color: #fff;
  background:
    linear-gradient(100deg, rgba(16, 41, 77, 0.96) 0%, rgba(16, 41, 77, 0.88) 50%, rgba(16, 41, 77, 0.58) 100%),
    url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1800&q=82") center/cover;
}

.hero-content {
  align-self: center;
  max-width: 780px;
}

.eyebrow,
.panel-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span {
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.inquiry-panel {
  align-self: center;
  padding: 30px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.inquiry-panel h2,
.section-heading h2,
.values-panel h2,
.assurance-copy h2,
.contact-section h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 4.4vw, 48px);
  line-height: 1.06;
}

.inquiry-panel h2 {
  font-size: 32px;
}

.inquiry-panel p {
  margin: 10px 0 22px;
  color: var(--muted);
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: #26354a;
  font-size: 13px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: none;
}

textarea {
  min-height: 120px;
  padding-top: 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(31, 111, 184, 0.14);
}

.consent-row {
  grid-template-columns: 18px auto;
  align-items: start;
  color: var(--muted);
  font-weight: 700;
}

.consent-row input {
  min-height: 18px;
  margin-top: 2px;
}

.alert {
  padding: 12px 14px;
  color: #b42318;
  background: #fff1f0;
  border: 1px solid #ffd5d2;
  border-radius: 8px;
  font-weight: 800;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  padding: 28px 4vw;
  background: #fff;
}

.trust-strip strong {
  display: block;
  color: var(--blue);
  font-size: 30px;
  line-height: 1;
}

.trust-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.ad-band {
  padding: 22px 6vw;
  background: #f4f7fb;
}

.ad-banner {
  display: block;
  max-width: 1120px;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(15, 37, 68, 0.08);
}

.ad-banner strong {
  display: block;
  padding: 18px 20px;
  color: var(--navy);
}

.ad-banner img {
  display: block;
  width: 100%;
  max-height: 220px;
  object-fit: cover;
}

.section {
  padding: 88px 6vw;
}

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

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

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

.service-card,
.blog-card,
.process-grid article {
  min-height: 230px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 111, 184, 0.34);
  box-shadow: 0 18px 48px rgba(15, 37, 68, 0.1);
}

.service-card span,
.blog-card > p {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card h3,
.blog-card h3,
.process-grid h3,
.value-item h3 {
  margin: 14px 0 10px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.22;
}

.service-card p,
.blog-card span,
.process-grid p,
.value-item p,
.assurance-copy p,
.assurance-list span,
.contact-section p {
  margin: 0;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}

.image-panel {
  min-height: 520px;
  background:
    linear-gradient(rgba(16, 41, 77, 0.08), rgba(16, 41, 77, 0.08)),
    url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1500&q=82") center/cover;
}

.values-panel {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 72px 6vw;
  background: var(--navy);
  color: #fff;
}

.values-panel h2,
.values-panel .value-item h3 {
  color: #fff;
}

.values-panel .value-item {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.values-panel .value-item p {
  color: rgba(255, 255, 255, 0.76);
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.process-grid article strong {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--green);
  border-radius: 8px;
}

.assurance-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 46px;
  align-items: start;
}

.assurance-copy p {
  margin-top: 18px;
  font-size: 17px;
}

.assurance-list {
  display: grid;
  gap: 14px;
}

.assurance-list p {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(15, 37, 68, 0.07);
}

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

.blog-card {
  min-height: 230px;
}

.blog-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 960px;
}

.faq-list details {
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 44px;
  align-items: center;
  padding: 74px 6vw;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #1d4775);
}

.contact-section h2 {
  color: #fff;
}

.contact-section .eyebrow,
.contact-section p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-cards {
  display: grid;
  gap: 12px;
}

.contact-cards a,
.contact-cards span {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 28px 6vw;
  color: var(--muted);
  background: #fff;
}

.site-footer strong {
  color: var(--navy);
}

@media (max-width: 1080px) {
  .hero,
  .split-section,
  .assurance-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 70px;
  }

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-button {
    display: block;
  }

  .site-nav,
  .header-action {
    display: none;
  }

  .site-header.is-open .site-nav {
    position: absolute;
    top: 78px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 10px 6vw 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

  .site-header.is-open .site-nav a {
    padding: 14px 0;
  }

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

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    padding: 0 20px;
  }

  .site-header.is-open .site-nav {
    top: 68px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero,
  .section,
  .values-panel,
  .contact-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero {
    gap: 28px;
    padding-top: 52px;
  }

  .hero-actions {
    display: grid;
  }

  .inquiry-panel {
    padding: 22px;
  }

  .trust-strip,
  .service-grid,
  .blog-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    padding: 24px 20px;
  }

  .split-section {
    min-height: auto;
  }

  .image-panel {
    min-height: 340px;
  }

  .site-footer {
    display: grid;
    padding: 24px 20px;
  }
}
