:root {
  --blue: #155f91;
  --blue-dark: #0d2f4c;
  --green: #42a948;
  --orange: #f47a1f;
  --ink: #14202b;
  --muted: #667788;
  --line: #d9e2ea;
  --paper: #f6f8fb;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(13, 47, 76, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.scrolled {
  padding-block: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 32px rgba(13, 47, 76, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 56px;
  height: 42px;
  object-fit: contain;
  background: var(--white);
  border-radius: 6px;
  padding: 5px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  content: "";
  background: var(--orange);
  border-radius: 999px;
  transition: width 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.16);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 22, 35, 0.86), rgba(8, 22, 35, 0.48) 46%, rgba(8, 22, 35, 0.14)),
    linear-gradient(0deg, rgba(8, 22, 35, 0.82), rgba(8, 22, 35, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 150px clamp(20px, 6vw, 78px) 150px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.6;
}

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

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 14px 32px rgba(244, 122, 31, 0.24);
}

.btn.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.1);
}

.hero-strip {
  position: absolute;
  z-index: 2;
  left: clamp(20px, 6vw, 78px);
  right: clamp(20px, 6vw, 78px);
  bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  font-weight: 700;
}

.hero-strip a {
  color: rgba(255, 255, 255, 0.9);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.trust-item {
  padding: 34px clamp(20px, 4vw, 54px);
  background: var(--white);
}

.trust-item strong {
  display: block;
  color: var(--blue);
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
}

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

.section {
  padding: clamp(72px, 9vw, 118px) clamp(20px, 6vw, 78px);
}

.section-head {
  max-width: 850px;
  margin-bottom: 36px;
}

.section h2 {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

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

.service-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(13, 47, 76, 0.04);
}

.service-card span {
  color: var(--green);
  font-weight: 800;
}

.service-card h3,
.insight-panel h3 {
  margin: 26px 0 12px;
  color: var(--blue-dark);
  font-size: 1.28rem;
}

.service-card p,
.profile-copy p,
.insight-panel p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.profile {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
  background: var(--white);
}

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

.profile-copy p {
  margin-top: 22px;
  font-size: 1.04rem;
}

.profile-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.profile-points div {
  padding-left: 18px;
  border-left: 4px solid var(--green);
}

.profile-points strong,
.profile-points span {
  display: block;
}

.profile-points span {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.55;
}

.insights {
  background:
    linear-gradient(120deg, rgba(21, 95, 145, 0.09), transparent 44%),
    var(--paper);
}

.insight-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.insight {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--blue-dark);
  background: var(--white);
  font-weight: 800;
  cursor: pointer;
}

.insight.active {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
}

.insight-panel {
  max-width: 850px;
  padding: 32px;
  border-left: 6px solid var(--orange);
  background: var(--white);
  box-shadow: var(--shadow);
}

.insight-panel h3 {
  margin-top: 0;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 5vw, 70px);
  color: var(--white);
  background: var(--blue-dark);
}

.contact h2,
.contact .eyebrow {
  color: var(--white);
}

.contact-copy p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  font-weight: 800;
}

.socials a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
}

.contact-form label,
.contact-form span {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: var(--blue-dark);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: var(--paper);
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 700;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 22px clamp(20px, 6vw, 78px);
  color: rgba(255, 255, 255, 0.75);
  background: #091f33;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-block;
    color: inherit;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 20px;
    display: none;
    min-width: 220px;
    padding: 12px;
    border-radius: 8px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    padding-top: 130px;
    padding-bottom: 156px;
  }

  .trust-band,
  .service-grid,
  .profile,
  .contact {
    grid-template-columns: 1fr;
  }

  .profile-media img {
    aspect-ratio: 16 / 11;
  }
}

@media (max-width: 560px) {
  .brand span {
    max-width: 150px;
    line-height: 1.15;
  }

  .brand img {
    width: 48px;
  }

  .hero h1 {
    font-size: 3.25rem;
  }

  .hero-strip {
    display: grid;
    gap: 8px;
  }

  .trust-item,
  .service-card,
  .insight-panel,
  .contact-form {
    padding: 22px;
  }

  .section {
    padding-inline: 18px;
  }
}
