:root {
  --navy: #0B2540;
  --navy-2: #12385B;
  --petrol: #0E5A66;
  --gold: #C9971F;
  --gold-2: #E0B653;
  --text: #233142;
  --muted: #6B7785;
  --line: #DDE5ED;
  --soft: #F6F8FA;
  --soft-2: #EEF3F7;
  --white: #FFFFFF;
  --shadow: 0 24px 70px rgba(11, 37, 64, 0.10);
  --shadow-soft: 0 14px 44px rgba(11, 37, 64, 0.08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
  --header-h: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 8%, rgba(201, 151, 31, 0.10), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(14, 90, 102, 0.10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 9999;
  padding: 12px 16px;
  background: var(--navy);
  color: var(--white);
  border-radius: 12px;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(221, 229, 237, 0.9);
}

.nav-shell {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand-mark {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
  flex: 0 0 auto;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.footer-brand .brand-mark {
  width: 58px;
  height: 58px;
}
.brand-text { display: grid; line-height: 1.08; }
.brand-text strong {
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.brand-text small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: 3px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.site-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: #46576A;
  font-size: 14px;
  font-weight: 700;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.site-nav a:hover, .site-nav a.active {
  background: #EEF3F7;
  color: var(--navy);
}
.site-nav .nav-cta {
  margin-left: 8px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 12px 26px rgba(11, 37, 64, 0.16);
}
.site-nav .nav-cta:hover { background: var(--navy-2); color: var(--white); transform: translateY(-1px); }
.nav-toggle { display: none; }

.section-white { padding: 108px 0; background: rgba(255, 255, 255, 0.74); }
.section-soft { padding: 108px 0; background: linear-gradient(180deg, var(--soft), #FFFFFF); }

.hero { padding-top: 92px; min-height: calc(100vh - var(--header-h)); display: flex; align-items: center; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 12px;
}
.eyebrow.light { color: var(--gold-2); }

h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  color: var(--navy);
  font-family: Fraunces, Georgia, serif;
  letter-spacing: -0.055em;
  line-height: .98;
}
h1 { font-size: clamp(48px, 7vw, 86px); margin-bottom: 24px; }
h2 { font-size: clamp(34px, 4.6vw, 58px); margin-bottom: 22px; }
h3 { color: var(--navy); font-size: 20px; line-height: 1.22; margin-bottom: 10px; letter-spacing: -0.02em; }

.hero-lead {
  color: #46576A;
  font-size: clamp(17px, 1.6vw, 20px);
  max-width: 680px;
  margin-bottom: 34px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
  box-shadow: 0 18px 36px rgba(11, 37, 64, 0.18);
}
.btn-primary:hover { box-shadow: 0 22px 45px rgba(11, 37, 64, 0.22); }
.btn-ghost {
  color: var(--navy);
  border-color: #CCD7E1;
  background: rgba(255, 255, 255, 0.72);
}
.btn-ghost:hover { border-color: var(--gold); background: #FFFFFF; box-shadow: var(--shadow-soft); }

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
}
.trust-row div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 25px rgba(11, 37, 64, 0.04);
}
.trust-row strong {
  display: block;
  color: var(--navy);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}
.trust-row span { display: block; margin-top: 8px; color: var(--muted); font-size: 13px; font-weight: 700; }

.hero-visual { position: relative; }
.hero-visual::before {
  content: "";
  position: absolute;
  inset: -22px;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 20%, rgba(201, 151, 31, 0.18), transparent 34%),
    radial-gradient(circle at 82% 76%, rgba(14, 90, 102, 0.18), transparent 36%);
  filter: blur(6px);
}
.visual-card {
  padding: 22px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(210, 221, 231, 0.95);
  background: linear-gradient(180deg, #FFFFFF, #F8FAFC);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.visual-topline, .visual-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 4px 14px;
  color: #6B7785;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.visual-topline span { color: var(--navy); }
.visual-topline em { color: var(--gold); font-style: normal; }
.visual-footer {
  padding: 14px 4px 0;
  border-top: 1px solid var(--line);
  justify-content: flex-start;
  flex-wrap: wrap;
}
.visual-footer span {
  padding: 8px 10px;
  border-radius: 999px;
  background: #EEF3F7;
  color: #425367;
  letter-spacing: .05em;
}
.flow-diagram {
  border-radius: 28px;
  border: 1px solid #D8E2EA;
  background: #F7F9FB;
}
.flow-diagram text {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 800;
  fill: var(--navy);
}
.flow-node { transition: transform .25s ease; transform-box: fill-box; transform-origin: center; }
.visual-card:hover .flow-node { transform: translateY(-3px); }

.split-grid {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr);
  gap: 72px;
  align-items: start;
}
.section-heading { position: sticky; top: 116px; }
.text-stack {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.text-stack p { color: #46576A; font-size: 17px; margin-bottom: 18px; }
.text-stack p:last-child { margin-bottom: 0; }

.quote-band { padding: 42px 0; background: linear-gradient(135deg, var(--navy), #12395B 58%, var(--petrol)); }
.quote-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--white);
}
.quote-shell p {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.05em;
  line-height: 1.05;
}
.quote-shell span {
  color: var(--gold-2);
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.section-head-centered {
  max-width: 820px;
  margin: 0 auto 54px;
  text-align: center;
}
.section-head-centered h2 { margin-bottom: 0; }

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #CAD6E0, transparent);
}
.timeline-item {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 32px rgba(11, 37, 64, 0.055);
}
.timeline-item span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid #D8E2EA;
  color: var(--gold);
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(11, 37, 64, 0.08);
}
.timeline-item p { color: var(--muted); margin-bottom: 0; font-size: 15px; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.feature-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(11, 37, 64, 0.05);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: rgba(201, 151, 31, 0.45); }
.icon-badge {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, #F8F3E6, #EEF6F7);
  border: 1px solid #E3D6B8;
}
.icon-badge svg { width: 34px; height: 34px; }
.icon-badge path, .icon-badge circle, .icon-badge rect {
  fill: none;
  stroke: var(--navy);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-card p { color: var(--muted); margin: 0; }

.operations-section { overflow: hidden; }
.operations-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.operation-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #FFFFFF, #F8FAFC);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(11, 37, 64, 0.05);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.operation-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: rgba(14, 90, 102, 0.32); }
.operation-illustration {
  height: 178px;
  display: grid;
  place-items: center;
  padding: 18px;
  background:
    radial-gradient(circle at 30% 10%, rgba(201, 151, 31, .18), transparent 30%),
    radial-gradient(circle at 84% 76%, rgba(14, 90, 102, .12), transparent 34%),
    linear-gradient(135deg, #F8FAFC, #EEF3F7);
  border-bottom: 1px solid var(--line);
}
.operation-illustration svg { width: 100%; height: 100%; }
.operation-illustration path,
.operation-illustration rect,
.operation-illustration circle {
  fill: none;
  stroke: var(--navy);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.operation-illustration circle { stroke: var(--gold); }
.operation-card h3, .operation-card p { padding: 0 24px; }
.operation-card h3 { margin-top: 24px; }
.operation-card p { color: var(--muted); margin-bottom: 26px; font-size: 15px; }

.vision-section {
  padding: 108px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11, 37, 64, 0.96), rgba(18, 56, 91, 0.96)),
    radial-gradient(circle at 0 0, rgba(201, 151, 31, 0.28), transparent 28%);
  position: relative;
  overflow: hidden;
}
.vision-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}
.vision-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(0, 1.1fr);
  gap: 70px;
  align-items: start;
}
.vision-section h2, .vision-section h3 { color: var(--white); }
.vision-cards { display: grid; gap: 16px; }
.vision-cards article {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}
.vision-cards span { color: var(--gold-2); font-weight: 900; letter-spacing: .14em; }
.vision-cards p { color: rgba(255, 255, 255, 0.72); margin-bottom: 0; }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}
.contact-copy p { color: #46576A; font-size: 17px; }
.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  color: var(--muted);
  font-weight: 700;
}
.contact-lines a { color: var(--navy); }
.contact-lines a:hover { color: var(--gold); }
.contact-form {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow);
}
.contact-form label { display: grid; gap: 8px; margin-bottom: 16px; }
.contact-form span { color: var(--navy); font-weight: 800; font-size: 13px; }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid #CED9E3;
  border-radius: 16px;
  padding: 14px 15px;
  color: var(--text);
  background: #FBFCFD;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201, 151, 31, 0.12);
}
.contact-form .btn { width: 100%; border: 0; }
.form-note { margin: 14px 0 0; color: var(--muted); font-size: 13px; }

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: #F8FAFC;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
}
.footer-links { display: flex; gap: 18px; color: #46576A; font-weight: 800; font-size: 14px; }
.footer-links a:hover { color: var(--gold); }
.footer-meta {
  display: grid;
  justify-items: end;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.footer-meta a:hover { color: var(--gold); }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .72s ease, transform .72s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .10s; }
.delay-2 { transition-delay: .20s; }

@media (max-width: 1100px) {
  .hero-grid, .split-grid, .vision-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 70px; }
  .section-heading { position: static; }
  .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .timeline::before { display: none; }
  .timeline-item span { margin-bottom: 28px; }
  .operations-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  :root { --header-h: 72px; }
  .container { width: min(100% - 28px, var(--container)); }
  .nav-toggle {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    cursor: pointer;
  }
  .nav-toggle span {
    width: 20px;
    height: 2px;
    display: block;
    margin: 3px 0;
    background: var(--navy);
    transition: transform .2s ease, opacity .2s ease;
  }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .site-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(var(--header-h) + 10px);
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-soft);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  body.nav-open .site-nav { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .site-nav a { padding: 12px 14px; }
  .site-nav .nav-cta { margin-left: 0; text-align: center; }
  .brand-mark { width: 56px; height: 56px; }
  .section-white, .section-soft, .vision-section { padding: 78px 0; }
  .hero-grid { gap: 36px; }
  .cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quote-shell { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-meta { justify-items: start; }
}

@media (max-width: 620px) {
  .hero { min-height: auto; }
  h1 { font-size: clamp(42px, 14vw, 58px); }
  .trust-row { grid-template-columns: 1fr; }
  .visual-card { padding: 14px; border-radius: 26px; }
  .visual-topline, .visual-footer { align-items: flex-start; flex-direction: column; }
  .timeline, .cards-grid, .operations-grid { grid-template-columns: 1fr; }
  .text-stack, .contact-form { padding: 22px; border-radius: 24px; }
  .feature-card { min-height: auto; }
  .brand-text small { font-size: 10px; }
  .footer-links { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}


/* LOGO CLEAN PATCH — removes the yellow/gold decoration around the logo */
.brand-mark,
.footer-brand .brand-mark {
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
  overflow: visible !important;
  border-radius: 0 !important;
}
.brand-mark::before,
.brand-mark::after,
.footer-brand .brand-mark::before,
.footer-brand .brand-mark::after {
  content: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.brand-mark img,
.footer-brand .brand-mark img {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  object-fit: contain !important;
}
