* {
  box-sizing: border-box;
}

:root {
  --navy: #061426;
  --navy-2: #0a1e38;
  --navy-3: #10345f;
  --blue: #1598ff;
  --blue-soft: #65c3ff;
  --white: #ffffff;
  --ink: #071b38;
  --muted: #5f748c;
  --light: #f4f8fc;
  --line: rgba(255,255,255,.14);
  --shadow: 0 24px 60px rgba(0,0,0,.25);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Segoe UI, Arial, sans-serif;
  background: var(--navy);
  color: #dce8f7;
  line-height: 1.55;
}

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

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 76px;
  padding: 0 42px;
  background: rgba(5, 16, 31, .97);
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo span {
  color: white;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -1px;
}

.logo strong {
  color: var(--blue);
}

.logo small {
  margin-top: 8px;
  color: #b9cee3;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 4px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.main-nav a:hover {
  color: var(--blue-soft);
}

.nav-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  padding: 13px 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .2px;
}

.nav-button,
.button.primary {
  background: linear-gradient(135deg, #0874df, #1598ff);
  color: white;
  box-shadow: 0 12px 30px rgba(21,152,255,.25);
}

.button.secondary {
  border: 1px solid rgba(255,255,255,.28);
  color: white;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 18%, rgba(21,152,255,.26), transparent 30%),
    radial-gradient(circle at 5% 10%, rgba(21,152,255,.16), transparent 28%),
    linear-gradient(135deg, #07172b 0%, #0a2442 52%, #05111f 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .32;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 54px 54px;
}

.hero-layout {
  position: relative;
  z-index: 1;
  min-height: 650px;
  padding: 76px 0 72px;
  display: grid;
  grid-template-columns: 1.05fr .9fr;
  align-items: center;
  gap: 56px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 900;
}

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

h1 {
  max-width: 770px;
  color: white;
  margin-bottom: 24px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: .98;
  letter-spacing: -2.7px;
}

.hero-text {
  max-width: 680px;
  color: #dceafa;
  font-size: 21px;
  margin-bottom: 30px;
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 12px;
  max-width: 590px;
}

.hero-metrics div {
  padding: 16px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  background: rgba(255,255,255,.06);
}

.hero-metrics strong {
  display: block;
  color: white;
  font-size: 26px;
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 5px;
  color: #bdd3ea;
  font-size: 13px;
  font-weight: 800;
}

.profile-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(101,195,255,.32);
  background: linear-gradient(135deg, rgba(13,47,86,.94), rgba(2,11,23,.9));
  box-shadow: var(--shadow);
  border-radius: 22px;
}

.profile-card img {
  width: 220px;
  height: 292px;
  object-fit: cover;
  object-position: center 22%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: #142a45;
}

.profile-copy h2 {
  color: white;
  margin-bottom: 8px;
  font-size: 30px;
  line-height: 1;
  text-transform: uppercase;
}

.role {
  color: var(--blue-soft);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.trust {
  background: #f7faff;
  color: var(--ink);
  padding: 24px 0;
  border-bottom: 1px solid #d9e4ef;
}

.trust p {
  text-align: center;
  margin-bottom: 18px;
  color: #183f6f;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1.4px;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.trust-list span {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: white;
  border: 1px solid #dce7f2;
  border-radius: 10px;
  text-align: center;
  color: #253d58;
  font-weight: 900;
}

.section {
  padding: 82px 0;
}

.section-light {
  background: var(--light);
  color: var(--ink);
}

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

.section-heading h2,
.experience-layout h2,
.technology h2,
.contact-card h2 {
  color: var(--ink);
  margin-bottom: 16px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -1.8px;
}

.section-heading p:not(.eyebrow),
.experience-layout p,
.contact-card p {
  color: #516982;
  font-size: 18px;
}

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

.service-card {
  background: white;
  border: 1px solid #d8e4ef;
  border-radius: 16px;
  padding: 28px 22px;
  box-shadow: 0 12px 34px rgba(9,35,70,.07);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #edf7ff;
  border: 1px solid #cee7fb;
  border-radius: 12px;
  font-weight: 900;
}

.service-card h3 {
  margin-bottom: 12px;
  color: #06224a;
  font-size: 18px;
  line-height: 1.18;
}

.service-card p {
  margin-bottom: 0;
  color: #455d78;
  font-size: 14px;
}

.section-dark {
  background:
    radial-gradient(circle at 80% 0%, rgba(21,152,255,.13), transparent 30%),
    linear-gradient(180deg, #08192f, #061525);
  color: white;
}

.dark-heading h2 {
  color: white;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.case-card {
  overflow: hidden;
  background: white;
  color: var(--ink);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 18px 50px rgba(0,0,0,.20);
}

.case-top {
  height: 120px;
}

.case-top.federal { background: linear-gradient(135deg, #dce6f2, #5d738d); }
.case-top.state { background: linear-gradient(135deg, #cce9d1, #2d6a3e); }
.case-top.energy { background: linear-gradient(135deg, #5a4a32, #f2a019); }
.case-top.mining { background: linear-gradient(135deg, #3e362c, #b9944a); }
.case-top.telco { background: linear-gradient(135deg, #004c91, #29b6ff); }
.case-top.finance { background: linear-gradient(135deg, #0f3b73, #6db8ff); }
.case-top.manufacturing { background: linear-gradient(135deg, #4d2471, #a458d2); }
.case-top.msp { background: linear-gradient(135deg, #0d5180, #55d0ff); }
.case-top.health { background: linear-gradient(135deg, #007b87, #4ee2d6); }
.case-top.defence { background: linear-gradient(135deg, #333b45, #bdb49f); }

.case-body {
  padding: 28px;
}

.sector {
  margin-bottom: 13px;
  color: #24496f;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.case-body h3 {
  margin-bottom: 12px;
  color: #041f48;
  font-size: 21px;
  line-height: 1.25;
}

.case-body p:last-child {
  margin-bottom: 0;
  color: #344f6f;
}

.experience-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 50px;
  align-items: start;
}

.credential-grid {
  display: grid;
  gap: 14px;
}

.credential {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  background: white;
  border: 1px solid #d8e4ef;
  border-radius: 14px;
}

.credential strong {
  color: #08214a;
  font-size: 18px;
}

.credential span {
  color: #4b617a;
}

.technology {
  background: white;
  color: var(--ink);
}

.tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tech-pills span {
  display: inline-flex;
  padding: 12px 18px;
  background: #eef6ff;
  border: 1px solid #cfe5fb;
  border-radius: 999px;
  color: #07306b;
  font-weight: 900;
}

.contact-section {
  background: #f4f8fc;
}

.contact-card {
  padding: 42px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(7,23,43,.96), rgba(13,47,86,.94));
  color: white;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  box-shadow: var(--shadow);
}

.contact-card h2 {
  color: white;
}

.contact-card p:not(.eyebrow) {
  color: #d6e7f8;
  max-width: 700px;
  margin-bottom: 0;
}

.site-footer {
  padding: 28px 0;
  background: #05111f;
  border-top: 1px solid var(--line);
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #aabdd3;
  font-size: 14px;
}

.footer-layout p {
  margin: 0;
}

@media (max-width: 1100px) {
  .main-nav {
    display: none;
  }

  .hero-layout,
  .experience-layout {
    grid-template-columns: 1fr;
  }

  .profile-card {
    max-width: 720px;
  }

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

  .trust-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .site-header {
    height: auto;
    padding: 18px 22px;
  }

  .logo span {
    font-size: 25px;
  }

  .logo small {
    font-size: 9px;
    letter-spacing: 3px;
  }

  .container {
    width: min(100% - 32px, 1180px);
  }

  .hero-layout {
    min-height: auto;
    padding: 54px 0;
  }

  h1 {
    font-size: 42px;
  }

  .hero-text {
    font-size: 18px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .profile-card {
    grid-template-columns: 1fr;
  }

  .profile-card img {
    width: 100%;
    height: 380px;
  }

  .services-grid,
  .case-grid,
  .trust-list {
    grid-template-columns: 1fr;
  }

  .contact-card,
  .footer-layout {
    flex-direction: column;
    align-items: flex-start;
  }
}
