:root {
  --ink: #101623;
  --navy: #061b33;
  --navy-2: #082b4d;
  --blue: #0874bb;
  --red: #c6122c;
  --red-deep: #9d0d22;
  --gold: #c49a4b;
  --gold-soft: #f3e6c7;
  --muted: #647084;
  --line: #d9e2ec;
  --paper: #f5f7fb;
  --white: #ffffff;
  --shadow: 0 26px 80px rgba(8, 24, 48, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, var(--paper) 42%, #eef3f8 100%);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(6, 27, 51, 0.1);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(8, 24, 48, 0.06);
}

.topbar {
  min-height: 34px;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 7px 20px;
  color: rgba(255, 255, 255, 0.86);
  background: linear-gradient(90deg, var(--navy), var(--navy-2));
  font-size: 0.78rem;
  font-weight: 700;
}

.topbar span:first-child {
  color: var(--gold-soft);
}

.navbar {
  width: min(1200px, calc(100% - 32px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  object-position: center;
  padding: 4px;
  border: 1px solid rgba(8, 116, 187, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(8, 24, 48, 0.08);
}

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

.brand strong {
  color: var(--red);
  font-size: 1.32rem;
  letter-spacing: 0;
}

.brand small {
  color: var(--navy-2);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #273348;
  font-size: 0.95rem;
  font-weight: 750;
}

.nav-panel a {
  position: relative;
  transition: color 160ms ease, transform 160ms ease;
}

.nav-panel a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--red);
  transition: transform 180ms ease;
}

.nav-panel a:hover {
  color: var(--navy-2);
}

.nav-panel a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 12px 17px;
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--ink), var(--navy-2));
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(6, 27, 51, 0.2);
}

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

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: end;
  gap: 42px;
  padding: 58px max(24px, calc((100vw - 1200px) / 2)) 34px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(105deg, rgba(3, 15, 31, 0.98), rgba(7, 46, 82, 0.92) 58%, rgba(7, 78, 122, 0.9)), #061b33;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -34% 38%;
  z-index: -2;
  height: 70%;
  background:
    radial-gradient(circle at 30% 40%, rgba(196, 154, 75, 0.18), transparent 28%),
    radial-gradient(circle at 72% 30%, rgba(198, 18, 44, 0.26), transparent 30%),
    radial-gradient(circle at 55% 60%, rgba(8, 116, 187, 0.38), transparent 34%);
  filter: blur(26px);
}

.hero-media {
  position: absolute;
  right: max(30px, calc((100vw - 1200px) / 2));
  top: 18%;
  z-index: -1;
  width: min(470px, 44vw);
  opacity: 0.12;
  filter: saturate(0.8) contrast(1.1);
}

.hero-media img {
  width: 100%;
}

.hero-content {
  max-width: 800px;
  padding: 42px 0 34px;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(3.3rem, 8vw, 7rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 720px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.06rem, 2vw, 1.32rem);
}

.hero-actions,
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-proof {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-proof span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  box-shadow: 0 20px 42px rgba(198, 18, 44, 0.3);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.hero-brief {
  display: grid;
  gap: 1px;
  margin-bottom: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.hero-brief div {
  padding: 26px;
  background: linear-gradient(135deg, rgba(4, 24, 47, 0.72), rgba(11, 51, 86, 0.62));
}

.hero-brief span,
.timeline span {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
}

.hero-brief strong {
  display: block;
  margin: 7px 0;
  font-size: 1.04rem;
}

.hero-brief p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.trust-strip,
.section,
.authority,
.process,
.contact,
.site-footer {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  transform: translateY(-28px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.trust-strip div {
  min-height: 138px;
  padding: 28px;
  background: linear-gradient(180deg, #ffffff, #fbfcfe);
}

.trust-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-2);
  font-size: 1.03rem;
}

.trust-strip span {
  color: var(--muted);
}

.section {
  padding: 86px 0 44px;
}

.section.compact {
  padding-top: 72px;
}

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

.section-heading h2,
.authority h2,
.process h2,
.contact h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.authority-copy p,
.contact p {
  color: var(--muted);
  font-size: 1.04rem;
}

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

.service-card {
  position: relative;
  min-height: 286px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(217, 226, 236, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(24, 39, 70, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(8, 116, 187, 0.28);
  box-shadow: 0 26px 68px rgba(8, 24, 48, 0.12);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card.featured {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(135deg, rgba(6, 27, 51, 0.94), rgba(8, 116, 187, 0.88)), var(--navy);
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.33rem;
  line-height: 1.22;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 38px;
  margin-bottom: 26px;
  border: 1px solid rgba(8, 116, 187, 0.2);
  border-radius: 8px;
  color: var(--red);
  background: rgba(8, 116, 187, 0.07);
  font-size: 0.78rem;
  font-weight: 950;
}

.featured .service-icon {
  color: var(--gold-soft);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.11);
}

.authority {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 38px;
  align-items: stretch;
  margin-top: 58px;
  padding: 54px;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(5, 18, 34, 0.96), rgba(8, 43, 77, 0.94)), var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.authority::after {
  content: "";
  position: absolute;
  inset: 18% -18% -50% 55%;
  background: radial-gradient(circle, rgba(196, 154, 75, 0.26), transparent 56%);
}

.authority-copy,
.authority-panel {
  position: relative;
  z-index: 1;
}

.authority-copy {
  align-self: center;
}

.authority-copy p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.72);
}

.authority-panel {
  display: grid;
  gap: 14px;
}

.metric {
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.065);
}

.metric strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-soft);
  font-size: 2rem;
  line-height: 1;
}

.metric span {
  color: rgba(255, 255, 255, 0.75);
}

.sector-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.sector-list span {
  padding: 19px 21px;
  border-left: 4px solid var(--red);
  border-radius: 8px;
  background: var(--white);
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(24, 39, 70, 0.055);
}

.process {
  padding: 78px 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.timeline article {
  position: relative;
  min-height: 252px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(24, 39, 70, 0.055);
}

.timeline article::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 0;
  width: 52px;
  height: 3px;
  background: var(--blue);
}

.timeline h3 {
  margin: 12px 0;
}

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

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: 44px;
  align-items: start;
  margin-bottom: 72px;
  padding: 58px;
  border: 1px solid rgba(217, 226, 236, 0.95);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #f6f9fd 54%, #edf4fb 100%);
  box-shadow: var(--shadow);
}

.contact-copy {
  position: sticky;
  top: 140px;
}

.contact-points {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-points span {
  padding: 12px 14px;
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy-2);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(217, 226, 236, 0.9);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(24, 39, 70, 0.08);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #354157;
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #fbfdff;
  color: var(--ink);
  font: inherit;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(8, 116, 187, 0.12);
}

.contact-form .button {
  width: 100%;
  border: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.footer-brand span {
  color: var(--ink);
  font-weight: 850;
}

.footer-links {
  display: flex;
  gap: 18px;
  color: var(--navy-2);
  font-weight: 800;
}

@media (max-width: 980px) {
  .topbar {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-panel {
    position: absolute;
    inset: 82px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .nav-panel a {
    padding: 14px;
    border-radius: 8px;
  }

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

  .nav-cta {
    text-align: center;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 42px;
  }

  .hero-content {
    padding: 30px 0 10px;
  }

  .hero-brief {
    margin-bottom: 10px;
  }

  .trust-strip,
  .service-grid,
  .authority,
  .sector-list,
  .timeline,
  .contact {
    grid-template-columns: 1fr;
  }

  .authority,
  .contact {
    padding: 36px;
  }

  .contact-copy {
    position: static;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .navbar {
    width: min(100% - 24px, 1200px);
    min-height: 72px;
  }

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

  .brand strong {
    font-size: 1.06rem;
  }

  .brand small {
    font-size: 0.69rem;
  }

  .nav-panel {
    inset: 72px 12px auto;
  }

  .hero {
    padding-inline: 16px;
  }

  .hero-media {
    width: 84vw;
    right: -28vw;
    top: 10vh;
  }

  h1 {
    font-size: clamp(2.65rem, 15vw, 4.2rem);
    line-height: 0.94;
  }

  .button {
    width: 100%;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-proof span {
    width: 100%;
    text-align: center;
  }

  .trust-strip,
  .section,
  .authority,
  .process,
  .contact,
  .site-footer {
    width: calc(100% - 24px);
  }

  .trust-strip {
    transform: translateY(-16px);
  }

  .section {
    padding-top: 54px;
  }

  .service-card,
  .timeline article {
    min-height: auto;
    padding: 24px;
  }

  .authority,
  .contact {
    padding: 24px;
  }

  .contact-form {
    padding: 16px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}
