:root {
  --navy-950: #06162e;
  --navy-900: #08234a;
  --navy-800: #0b3166;
  --navy-700: #114584;
  --blue-500: #2f8dd8;
  --blue-200: #cfeeff;
  --gold-500: #d8a03d;
  --gold-400: #e6b85e;
  --white: #ffffff;
  --off-white: #f7f9fc;
  --paper: #fbfcfe;
  --text: #132238;
  --muted: #617087;
  --line: #dce4ef;
  --shadow: 0 18px 45px rgba(4, 25, 55, 0.12);
  --soft-shadow: 0 12px 28px rgba(5, 29, 67, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -120px;
  z-index: 2000;
  background: var(--gold-500);
  color: var(--navy-950);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 800;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(220, 228, 239, 0.8);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  box-shadow: var(--soft-shadow);
  background: rgba(255, 255, 255, 0.98);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 7px;
  border-radius: 12px;
  background: linear-gradient(145deg, #ffffff, #eef3fb);
  box-shadow: 0 8px 22px rgba(6, 35, 74, 0.12);
}

.mark-bar {
  border-radius: 4px;
}

.mark-blue {
  background: var(--navy-800);
}

.mark-gold {
  background: var(--gold-500);
  transform: translateY(10px);
}

.brand-text {
  color: var(--navy-950);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.brand-text strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.brand-text span {
  display: block;
  margin-top: 5px;
  font-size: 0.73rem;
  font-weight: 800;
  color: var(--navy-700);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  font-weight: 760;
  font-size: 0.92rem;
  color: var(--navy-950);
}

.nav-link {
  position: relative;
  padding: 10px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--navy-900);
  color: var(--white);
  cursor: pointer;
  padding: 11px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  border-radius: 100px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 13px 19px;
  border-radius: 9px;
  border: 1px solid transparent;
  font-weight: 820;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: var(--navy-900);
  color: var(--white);
  box-shadow: 0 12px 25px rgba(8, 35, 74, 0.18);
}

.btn-primary:hover {
  background: var(--navy-800);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950);
  box-shadow: 0 14px 30px rgba(216, 160, 61, 0.26);
}

.btn-outline-light {
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.06);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.9);
}

.btn-light {
  background: var(--white);
  color: var(--navy-900);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 55% 35%, rgba(48, 151, 225, 0.42), transparent 25%),
    radial-gradient(circle at 76% 28%, rgba(216, 160, 61, 0.18), transparent 22%),
    linear-gradient(135deg, rgba(6, 22, 46, 0.96), rgba(8, 35, 74, 0.92)),
    linear-gradient(90deg, #05152d, #123b6c);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 68% 45%, #000 0, transparent 58%);
}

.hero::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -92px;
  height: 190px;
  background: var(--paper);
  border-radius: 50% 50% 0 0;
  transform: rotate(-2deg);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,22,46,0.96) 0%, rgba(6,22,46,0.74) 42%, rgba(6,22,46,0.2) 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding: 96px 0 142px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-400);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
  border-radius: 20px;
}

.hero h1 {
  max-width: 750px;
  margin: 20px 0 22px;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero-subtitle {
  max-width: 620px;
  margin: 0;
  color: rgba(255,255,255,0.84);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.hero-visual {
  position: relative;
  min-height: 470px;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.9;
}

.hero-visual::before {
  width: 160px;
  height: 160px;
  right: 18%;
  top: 16%;
  border: 1px solid rgba(103, 199, 255, 0.3);
}

.hero-visual::after {
  width: 270px;
  height: 270px;
  right: 2%;
  bottom: 4%;
  border: 1px solid rgba(216, 160, 61, 0.18);
}

.map-card {
  position: relative;
  width: min(100%, 470px);
  margin-inline: auto;
  padding: 18px;
  border-radius: 30px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 24px 60px rgba(0,0,0,0.22);
  backdrop-filter: blur(12px);
}

.iraq-shape {
  fill: rgba(7, 33, 71, 0.72);
  stroke: url(#mapLine);
  stroke-width: 3;
  filter: url(#glow);
}

.network-line {
  fill: none;
  stroke: rgba(103, 199, 255, 0.78);
  stroke-width: 2;
  stroke-dasharray: 7 8;
}

.node circle {
  fill: var(--gold-500);
  stroke: #ffffff;
  stroke-width: 3;
  filter: url(#glow);
}

.node text {
  fill: #ffffff;
  font-size: 13px;
  font-weight: 800;
  paint-order: stroke;
  stroke: rgba(6, 22, 46, 0.9);
  stroke-width: 4px;
  stroke-linejoin: round;
}

.intro-section {
  position: relative;
  padding: 24px 0 74px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 46px;
  align-items: stretch;
}

.intro-copy {
  padding-left: 24px;
  border-left: 3px solid var(--gold-500);
}

.intro-copy h2,
.section-heading h2,
.why-intro h2,
.cta-panel h2 {
  margin: 14px 0;
  color: var(--navy-950);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.intro-copy p,
.section-heading p,
.why-intro p,
.cta-panel p {
  color: var(--muted);
  margin: 0 0 14px;
}

.strong-note {
  color: var(--navy-900) !important;
  font-weight: 760;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
  border: 1px solid rgba(220, 228, 239, 0.9);
}

.trust-strip article {
  padding: 30px 26px;
  border-right: 1px solid var(--line);
}

.trust-strip article:last-child {
  border-right: 0;
}

.trust-strip span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(17, 69, 132, 0.09);
  color: var(--navy-800);
  font-weight: 900;
}

.trust-strip h3,
.cap-card h3,
.why-list h3,
.sector-card h3,
.process-step h3 {
  margin: 16px 0 8px;
  color: var(--navy-950);
  line-height: 1.18;
}

.trust-strip p,
.cap-card p,
.why-list p,
.sector-card p,
.process-step p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

.section {
  padding: 74px 0;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading .section-kicker {
  justify-content: center;
}

.card-grid {
  display: grid;
  gap: 22px;
}

.five-columns {
  grid-template-columns: repeat(5, 1fr);
}

.cap-card,
.sector-card {
  padding: 28px 24px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(5, 29, 67, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.cap-card:hover,
.sector-card:hover {
  transform: translateY(-7px);
  border-color: rgba(216, 160, 61, 0.48);
  box-shadow: var(--shadow);
}

.icon-circle {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--navy-800), var(--blue-500));
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 900;
}

.cap-card a {
  display: inline-flex;
  gap: 8px;
  margin-top: 18px;
  color: var(--navy-800);
  font-weight: 850;
}

.why-panel {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 32px;
  align-items: stretch;
  padding: 46px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(238,245,253,0.95)),
    radial-gradient(circle at 85% 0%, rgba(47,141,216,0.12), transparent 24%);
  box-shadow: var(--soft-shadow);
  border: 1px solid rgba(220, 228, 239, 0.9);
}

.why-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.why-list article {
  padding: 0 20px;
  border-left: 1px solid var(--line);
}

.sectors {
  background: linear-gradient(180deg, var(--paper), #eef4fb);
}

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

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.process-line::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 31px;
  height: 2px;
  background: linear-gradient(90deg, rgba(216,160,61,0.2), rgba(17,69,132,0.45), rgba(216,160,61,0.2));
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 10px;
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--navy-800);
  color: var(--white);
  border: 6px solid var(--paper);
  box-shadow: 0 8px 20px rgba(17,69,132,0.22);
  font-weight: 900;
}

.confidentiality {
  background:
    radial-gradient(circle at 84% 50%, rgba(103, 199, 255, 0.22), transparent 22%),
    linear-gradient(90deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  padding: 46px 0;
}

.confidentiality-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}

.shield {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,0.32);
  border-radius: 24px;
  color: var(--gold-400);
  font-size: 2rem;
}

.confidentiality h2,
.confidentiality p {
  margin: 0;
}

.confidentiality p {
  margin-top: 6px;
  color: rgba(255,255,255,0.75);
}

.final-cta {
  padding: 76px 0;
  background:
    radial-gradient(circle at 90% 65%, rgba(47,141,216,0.16), transparent 24%),
    linear-gradient(180deg, #f8fbff, var(--white));
}

.cta-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 46px;
  padding: 42px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  align-items: center;
}

.mini-form {
  display: grid;
  gap: 16px;
}

.mini-form label {
  display: grid;
  gap: 8px;
  color: var(--navy-950);
  font-weight: 780;
}

.mini-form input,
.mini-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  color: var(--text);
  background: var(--off-white);
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.mini-form input:focus,
.mini-form select:focus {
  border-color: var(--blue-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(47, 141, 216, 0.13);
}

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

.site-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.78);
  padding: 58px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 0.9fr 1fr;
  gap: 42px;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-brand .brand-text,
.footer-brand .brand-text span,
.footer-brand .brand-text strong {
  color: var(--white);
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer p {
  margin: 0 0 12px;
}

.site-footer a:not(.brand):not(.btn) {
  display: block;
  margin-bottom: 9px;
  color: rgba(255,255,255,0.76);
}

.site-footer a:not(.brand):not(.btn):hover {
  color: var(--gold-400);
}

.copyright,
.footer-warning {
  color: rgba(255,255,255,0.58) !important;
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

@media (max-width: 1100px) {
  .main-nav {
    gap: 16px;
    font-size: 0.86rem;
  }

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

  .why-panel,
  .cta-panel,
  .intro-grid,
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .why-list,
  .process-line {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-line::before {
    display: none;
  }

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

@media (max-width: 860px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .nav-wrap {
    min-height: 70px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 70px 14px auto 14px;
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link,
  .nav-cta {
    width: 100%;
  }

  .nav-link {
    padding: 12px 4px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 70px 0 120px;
    gap: 34px;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .intro-section,
  .section,
  .final-cta {
    padding: 54px 0;
  }

  .trust-strip,
  .five-columns,
  .sector-grid,
  .why-list,
  .process-line,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip article:last-child {
    border-bottom: 0;
  }

  .why-panel,
  .cta-panel {
    padding: 28px;
  }

  .why-list article {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 18px 0 0;
  }

  .confidentiality-wrap {
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .brand-text strong {
    font-size: 0.94rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 13vw, 3.4rem);
  }

  .map-card {
    padding: 8px;
    border-radius: 22px;
  }

  .node text {
    font-size: 11px;
  }

  .confidentiality-wrap {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* V2 ASSET UPDATE: logo and hero image now use visual assets matching the approved mockup. */
.brand-logo {
  display: block;
  width: 193px;
  height: 48px;
  object-fit: contain;
}

.footer-logo {
  width: 135px;
  height: 42px;
  object-fit: contain;
}

.hero-map-image {
  display: block;
  width: min(100%, 520px);
  margin-inline: auto;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual::before,
.hero-visual::after {
  pointer-events: none;
}

@media (max-width: 560px) {
  .brand-logo {
    width: 165px;
    height: 42px;
  }

  .footer-logo {
    width: 135px;
    height: 42px;
  }

  .hero-map-image {
    width: 100%;
    border-radius: 14px;
  }
}
