:root {
  --bg-dark: #03162f;
  --bg-darker: #020e1f;
  --gold: #f4b223;
  --gold-soft: #d49a1d;
  --gold-deep: #c88915;
  --text-light: #f5f7fa;
  --text-muted: #c6cfdd;
  --card-bg: #ffffff;
  --line: #e3e8ef;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background: #f5f6f8;
  color: #111827;
  line-height: 1.5;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.container {
  width: min(1220px, 92%);
  margin: 0 auto;
}

.hero {
  min-height: 760px;
  background-image: linear-gradient(95deg, rgba(2, 19, 44, 0.95) 0%, rgba(2, 19, 44, 0.9) 44%, rgba(2, 19, 44, 0.3) 100%), url("header-bg.png");
  background-size: cover;
  background-position: center center;
  color: var(--text-light);
  position: relative;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  gap: 1rem;
  background: rgba(2, 14, 31, 0.93);
  border-radius: 0 0 8px 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-top: none;
  box-shadow: 0 8px 22px rgba(1, 9, 24, 0.45);
}

.brand img {
  width: 184px;
  height: auto;
  border-radius: 6px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.74rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

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

.btn-contact {
  background: var(--gold);
  color: var(--bg-dark) !important;
  padding: 9px 14px;
  border-radius: 4px;
  font-size: 0.76rem !important;
  font-weight: 700;
}

.btn-contact::after {
  display: none;
}

.btn-contact:hover {
  background: var(--gold-soft);
  color: var(--bg-dark) !important;
}

.hero-content {
  display: flex;
  align-items: center;
  min-height: 600px;
  padding-top: 28px;
  padding-bottom: 56px;
}

.hero-copy {
  max-width: 620px;
}

.hero-copy h1 {
  font-size: clamp(2.1rem, 5vw, 3.7rem);
  line-height: 1.08;
  font-weight: 800;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.hero-copy h1 span {
  color: var(--gold);
}

.hero-copy p {
  max-width: 500px;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 4px;
  padding: 12px 22px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg-dark);
}

.btn-primary:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(233, 164, 37, 0.25);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--text-light);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.play-icon {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  margin-right: 8px;
}

.highlight-bar {
  margin-top: -40px;
  background: var(--bg-dark);
  color: var(--text-light);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.highlight-bar article {
  min-width: 0;
  padding: clamp(10px, 1.4vw, 18px) clamp(6px, 1vw, 14px);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.25s ease;
}

.mini-icon {
  width: clamp(20px, 2.8vw, 34px);
  height: clamp(20px, 2.8vw, 34px);
  object-fit: contain;
  margin-bottom: clamp(4px, 0.8vw, 10px);
  filter: brightness(0) saturate(100%) invert(72%) sepia(66%) saturate(665%) hue-rotate(356deg) brightness(100%) contrast(92%);
}

.highlight-bar article:hover {
  background: rgba(255, 255, 255, 0.04);
}

.highlight-bar article:last-child {
  border-right: none;
}

.highlight-bar h4 {
  color: var(--gold);
  font-size: clamp(0.52rem, 1.15vw, 0.74rem);
  margin-bottom: clamp(3px, 0.5vw, 6px);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.highlight-bar p {
  font-size: clamp(0.55rem, 1.2vw, 0.86rem);
  margin-bottom: 2px;
  line-height: 1.3;
}

.highlight-bar small {
  color: #a7b5cb;
  font-size: clamp(0.5rem, 1vw, 0.75rem);
  line-height: 1.25;
  display: block;
}

main section {
  padding: 56px 0;
}

.section-tag {
  color: #b47d16;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.section-tag.center {
  text-align: center;
}

h2 {
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  color: #0f2038;
  margin-bottom: 14px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.22fr 1fr 1fr;
  gap: 18px;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 26px rgba(16, 36, 66, 0.12);
}

.card h3 {
  text-transform: uppercase;
  font-size: 1rem;
  margin-bottom: 10px;
  color: #1f3558;
}

.about-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  opacity: 0.95;
  filter: brightness(0) saturate(100%) invert(72%) sepia(66%) saturate(665%) hue-rotate(356deg) brightness(100%) contrast(92%);
}

.card p {
  font-size: 0.92rem;
  color: #2d3748;
}

.btn-link {
  display: inline-block;
  margin-top: 16px;
  color: #0f2038;
  border: 1px solid #e6c98d;
  padding: 8px 12px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
}

.leadership {
  display: grid;
  grid-template-columns: 1fr 1.14fr 0.78fr;
  gap: 18px;
  align-items: stretch;
}

.leadership img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  image-rendering: -webkit-optimize-contrast;
  object-position: center center;
}

.leadership-copy {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 22px;
  box-shadow: 0 8px 18px rgba(10, 28, 54, 0.06);
}

.leadership-main-image {
  min-height: 470px;
}

.leadership-side-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.leadership-side-image {
  min-height: 226px;
}

.second-image {
  object-position: center 20%;
}

.leadership-copy h2 span {
  color: #1c2f4f;
}

.role {
  color: #b47d16;
  font-weight: 600;
  margin-bottom: 10px;
}

.permit-no {
  font-size: clamp(0.45rem, 0.95vw, 0.8rem);
  line-height: 1.2;
  word-break: break-all;
  hyphens: auto;
}

.leadership-copy p {
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.signature {
  font-family: cursive;
  color: #243b61;
  font-size: 1.25rem;
  margin-top: 10px;
}

.operations h2 {
  margin-bottom: 18px;
}

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

.operation-card {
  background: #ffffff;
  color: #1a2940;
  border-radius: 4px;
  padding: 16px 18px;
  border: 1px solid #dde4ee;
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 12px;
  align-items: start;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.operation-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 24px rgba(5, 20, 38, 0.28);
}

.operation-card h3 {
  margin-bottom: 3px;
  color: #0f2038;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.operation-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 0;
  grid-row: span 2;
  background: #08213d;
  border-radius: 50%;
  padding: 12px;
  filter: brightness(0) saturate(100%) invert(76%) sepia(36%) saturate(2085%) hue-rotate(357deg) brightness(98%) contrast(95%);
}

.operation-card p {
  font-size: 0.8rem;
  line-height: 1.35;
  color: #44526a;
}

.financials {
  background: linear-gradient(180deg, #081f3d, #03132a);
  color: #fff;
}

.financials h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 22px;
}

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

.figures-grid article {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  padding: 16px 10px;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
  background: rgba(255, 255, 255, 0.02);
}

.figures-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 178, 35, 0.55);
}

.figures-grid h3 {
  color: var(--gold);
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
}

.stats-icon {
  width: 26px;
  height: 26px;
  margin-bottom: 10px;
  filter: brightness(0) saturate(100%) invert(76%) sepia(36%) saturate(2085%) hue-rotate(357deg) brightness(98%) contrast(95%);
}

.bitmap-icon {
  filter: none;
  object-fit: cover;
}

.operation-icon.bitmap-icon {
  padding: 0;
  border-radius: 50%;
  border: 2px solid #08213d;
  background: #ffffff;
}

.stats-icon.bitmap-icon {
  border-radius: 6px;
}

.figures-grid p {
  color: #d2dcf0;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin-top: 8px;
}

.centered-btn {
  margin: 20px auto 0;
  display: flex;
  width: fit-content;
}

.risk-contact {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 18px;
}

.risk-box,
.cta-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.risk-box:hover,
.cta-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px rgba(9, 24, 46, 0.1);
}

.risk-box h3,
.cta-box h3 {
  color: #142845;
  margin-bottom: 10px;
}

.risk-box ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 16px;
}

.risk-box li {
  font-size: 0.9rem;
  position: relative;
  padding-left: 18px;
}

.risk-box li::before {
  content: "✓";
  color: #1f8b4c;
  position: absolute;
  left: 0;
  top: 0;
}

.cta-box p {
  margin-bottom: 16px;
  color: #374151;
}

.cta-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 12px;
  filter: brightness(0) saturate(100%) invert(64%) sepia(57%) saturate(627%) hue-rotate(358deg) brightness(99%) contrast(89%);
}

.cta-box .btn-outline {
  color: #0f2038;
  border-color: #cfd8e7;
  font-weight: 700;
}

.site-footer {
  background: linear-gradient(180deg, #061a36 0%, #031126 100%);
  color: #d8e2f2;
  padding-top: 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 26px;
}

.footer-logo {
  width: 170px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.site-footer h4 {
  color: var(--gold);
  margin-bottom: 10px;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.site-footer ul {
  list-style: none;
}

.site-footer li,
.site-footer p,
.site-footer a {
  color: #d8e2f2;
  font-size: 0.84rem;
  text-decoration: none;
  margin-bottom: 6px;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.social-links a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-links img {
  width: 16px;
  height: 16px;
  filter: brightness(0) saturate(100%) invert(89%) sepia(6%) saturate(1102%) hue-rotate(180deg) brightness(100%) contrast(91%);
}

.contact-inline-icon {
  width: 15px;
  height: 15px;
  margin-right: 8px;
  vertical-align: -2px;
  filter: brightness(0) saturate(100%) invert(72%) sepia(66%) saturate(665%) hue-rotate(356deg) brightness(100%) contrast(92%);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 0 18px;
  text-align: center;
  font-size: 0.82rem;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 1.3rem;
  border-radius: 6px;
  padding: 6px 10px;
}

.financials .container,
.risk-contact,
.site-footer .container {
  width: min(1320px, 94%);
}

.about,
.leadership,
.operations,
.risk-contact {
  scroll-margin-top: 84px;
}

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

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

.hero-copy h1,
.hero-copy p,
.hero-buttons {
  animation: fadeInUp 0.9s ease both;
}

.hero-copy p {
  animation-delay: 0.2s;
}

.hero-buttons {
  animation-delay: 0.35s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .nav-links {
    gap: 0.75rem;
  }

  .nav-links a {
    font-size: 0.72rem;
  }

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

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

  .leadership {
    grid-template-columns: 1fr;
  }

  .leadership-side-stack {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: unset;
  }

  .leadership-side-image {
    min-height: 280px;
  }

  .hero {
    min-height: 700px;
  }

  .hero-content {
    min-height: 560px;
    padding-bottom: 40px;
  }
}

@media (max-width: 760px) {
  .top-nav {
    position: relative;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: min(320px, 85vw);
    background: rgba(2, 14, 31, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
    display: none;
    z-index: 100;
  }

  .nav-links a::after {
    bottom: -4px;
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    min-height: 670px;
  }

  .hero-content {
    min-height: 520px;
    padding-bottom: 30px;
  }

  .hero-copy h1 {
    font-size: clamp(1.9rem, 8vw, 2.7rem);
  }

  .hero-buttons {
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .operations-grid {
    gap: 12px;
  }

  .operation-card {
    border-radius: 6px;
    padding: 16px;
    grid-template-columns: 48px 1fr;
  }

  .operation-icon {
    width: 48px;
    height: 48px;
    padding: 10px;
  }

  .operation-icon.bitmap-icon {
    padding: 0;
  }

  .about-grid,
  .operations-grid,
  .figures-grid,
  .footer-grid,
  .risk-contact,
  .risk-box ul {
    grid-template-columns: 1fr;
  }

  .leadership-side-stack {
    grid-template-columns: 1fr;
  }

  .leadership-main-image,
  .leadership-side-image {
    min-height: 240px;
  }
}
