:root {
  --ink: #102033;
  --muted: #5a6675;
  --line: #d9e1ea;
  --soft: #f4f7fb;
  --panel: #ffffff;
  --pulse: #d8242f;
  --blue: #123f73;
  --teal: #007f8c;
  --gold: #c59138;
  --shadow: 0 18px 50px rgba(16, 32, 51, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.topbar {
  background: var(--blue);
  color: #ffffff;
  font-size: 0.92rem;
}

.topbar-inner,
.site-header-inner,
.section-inner,
.footer-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
}

.topbar a {
  text-decoration: none;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(217, 225, 234, 0.85);
  backdrop-filter: blur(12px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 188px;
  height: auto;
}

.brand span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border-radius: 6px;
  padding: 8px 9px;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.91rem;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
  transition: background-color 160ms ease, color 160ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 9px;
  bottom: 3px;
  left: 9px;
  height: 2px;
  border-radius: 999px;
  background: transparent;
  content: "";
}

.site-nav a:hover {
  background: var(--soft);
}

.site-nav a[aria-current="page"] {
  color: var(--blue);
}

.site-nav a[aria-current="page"]::after {
  background: var(--blue);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 11px 18px;
  background: var(--pulse);
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
}

.button:hover {
  background: #b91f28;
}

.button.secondary {
  border-color: var(--line);
  background: #ffffff;
  color: var(--ink);
}

.button.secondary:hover {
  border-color: var(--blue);
  background: var(--soft);
}

.hero {
  position: relative;
  overflow: hidden;
  background: #0d223a;
  color: #ffffff;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(8, 21, 36, 0.88), rgba(8, 21, 36, 0.56), rgba(8, 21, 36, 0.28));
}

.hero .section-inner {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  padding: 76px 0 96px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.2rem, 4vw, 3.85rem);
  letter-spacing: 0;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(2.5rem, 4.2vw, 4.15rem);
}

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

h3 {
  font-size: 1.3rem;
}

p {
  margin: 0;
}

.lead {
  margin-top: 22px;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.22rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-points span,
.badge {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
}

.service-area-strip {
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.service-area-strip .section-inner {
  padding: 16px 0;
}

.service-area-strip p {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.trust-strip .section-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
}

.trust-strip span {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-left: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.trust-strip span:last-child {
  border-right: 1px solid var(--line);
}

.section {
  padding: 78px 0;
}

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

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head h1 {
  max-width: 820px;
  font-size: clamp(2.15rem, 3.25vw, 3.45rem);
}

.section-head p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

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

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

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

.work-grid + .work-grid {
  margin-top: 18px;
}

.case-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.case-step {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(16, 32, 51, 0.08);
}

.case-step span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-step h3 {
  margin-bottom: 10px;
}

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

.service-card,
.proof-item,
.process-item,
.contact-panel,
.form-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.work-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

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

.work-card div {
  padding: 18px;
}

.work-card span {
  display: inline-flex;
  margin-bottom: 10px;
  border-radius: 999px;
  padding: 5px 10px;
  background: var(--soft);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-card p {
  margin-top: 8px;
  color: var(--muted);
}

.service-card {
  overflow: hidden;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-card div {
  padding: 20px;
}

.service-card p,
.proof-item p,
.process-item p,
.split-copy p,
.service-list li,
.contact-panel p,
.footer p,
.footer li {
  color: var(--muted);
}

.service-card p {
  margin-top: 10px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 42px;
  align-items: center;
}

.split-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.split-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.split-image img.wide-shot {
  aspect-ratio: 16 / 9;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  border-left: 4px solid var(--teal);
  padding: 10px 0 10px 14px;
  background: #ffffff;
  font-weight: 700;
}

.proof-item,
.process-item {
  padding: 24px;
}

.proof-item strong {
  display: block;
  color: var(--blue);
  font-size: 2.3rem;
  line-height: 1;
}

.proof-item span,
.process-item span {
  display: block;
  margin: 10px 0 8px;
  color: var(--ink);
  font-weight: 900;
}

.process-item em {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--blue);
  color: #ffffff;
  font-style: normal;
  font-weight: 900;
}

.cta-band {
  background: var(--blue);
  color: #ffffff;
}

.cta-band .section-inner {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}

.cta-band p {
  max-width: 680px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
}

.page-hero {
  background: var(--soft);
}

.page-hero .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 42px;
  align-items: center;
  padding: 58px 0;
}

.page-hero h1 {
  max-width: 760px;
  font-size: clamp(2.25rem, 3vw, 3.55rem);
}

.page-hero p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.12rem;
}

.page-hero img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: 42px;
}

.content-block + .content-block {
  margin-top: 34px;
}

.content-block p {
  margin-top: 14px;
  color: var(--muted);
}

.content-image {
  display: block;
  width: 100%;
  margin-top: 22px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.14rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal);
  color: #ffffff;
  content: "\2713";
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 18px;
  text-align: center;
}

.side-box {
  border-left: 5px solid var(--pulse);
  padding: 24px;
  background: var(--soft);
}

.side-box h3 {
  margin-bottom: 14px;
}

.side-box a {
  display: block;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

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

.guide-card {
  display: flex;
  min-height: 170px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: #ffffff;
  box-shadow: var(--shadow);
  color: var(--ink);
  text-decoration: none;
}

.guide-card span {
  color: var(--pulse);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-card strong {
  display: block;
  margin-top: 12px;
  font-size: 1.02rem;
  line-height: 1.35;
}

.guide-card em {
  display: block;
  margin-top: 18px;
  color: var(--blue);
  font-style: normal;
  font-weight: 900;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: 24px;
}

.contact-panel,
.form-panel {
  padding: 26px;
}

.contact-panel h3 + p {
  margin-top: 12px;
}

.contact-methods {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-methods a,
.contact-methods span {
  display: block;
  text-decoration: none;
  font-weight: 800;
}

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

label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

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

.form-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.form-result {
  max-width: 760px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.form-result p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.12rem;
}

.footer {
  background: #0d1b2a;
  color: #ffffff;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.4fr) minmax(240px, 0.48fr);
  gap: 32px;
  padding: 54px 0;
}

.footer img {
  width: 178px;
  margin-bottom: 18px;
}

.footer .accreditation {
  display: inline-block;
  margin-top: 18px;
  border-radius: 8px;
  padding: 10px;
  background: #ffffff;
}

.footer .accreditation img {
  width: 170px;
  margin: 0;
}

.footer h3 {
  margin-bottom: 14px;
  font-size: 1.05rem;
}

.footer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-header-inner {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding-bottom: 10px;
  }

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

  .site-nav a {
    min-height: 44px;
    padding: 12px;
  }

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

  .site-nav a[aria-current="page"] {
    background: var(--soft);
  }

  .hero .section-inner {
    min-height: 560px;
  }

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

  .trust-strip span:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .trust-strip span:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }

  .service-grid,
  .proof-grid,
  .case-steps,
  .process-grid,
  .guide-grid,
  .work-grid,
  .work-grid.two,
  .split,
  .page-hero .section-inner,
  .two-column,
  .contact-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .cta-band .section-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand img {
    width: 158px;
  }

  .hero .section-inner {
    min-height: 620px;
    padding: 54px 0 70px;
  }

  .hero-media::after {
    background: rgba(8, 21, 36, 0.78);
  }

  .section {
    padding: 58px 0;
  }

  .trust-strip .section-inner {
    grid-template-columns: 1fr;
  }

  .trust-strip span,
  .trust-strip span:nth-child(2) {
    min-height: 58px;
    border-right: 1px solid var(--line);
  }

  .trust-strip span:nth-child(n+2) {
    border-top: 1px solid var(--line);
  }

  .service-list {
    grid-template-columns: 1fr;
  }
}
