:root {
  --bg: #08090f;
  --bg-soft: #121520;
  --surface: rgba(21, 26, 40, 0.78);
  --text: #eef2ff;
  --muted: #afb8d4;
  --line: rgba(173, 184, 255, 0.2);
  --accent: #8b5cf6;
  --accent-2: #22d3ee;
  --gold: #f59e0b;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% -10%, rgba(139, 92, 246, 0.18), transparent 42%),
    radial-gradient(circle at 100% 0%, rgba(34, 211, 238, 0.14), transparent 38%),
    var(--bg);
  line-height: 1.7;
}

a {
  color: var(--accent-2);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #67e8f9;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 1.5rem;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 2rem;
  background: rgba(8, 10, 18, 0.82);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  border-bottom: 1px solid var(--line);
  z-index: 10;
}

.header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.header nav a {
  color: var(--muted);
  padding: 0.35rem 0.8rem;
  border: 1px solid transparent;
  border-radius: 999px;
}

.header nav a.active {
  color: var(--text);
  border-color: var(--line);
  background: rgba(139, 92, 246, 0.16);
}

.logo img,
.footer-logo img {
  height: 48px;
  width: auto;
}

.hero {
  text-align: center;
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 4.5rem 1.5rem 1.5rem;
}

.hero img {
  height: 106px;
  width: auto;
  filter: drop-shadow(0 0 24px rgba(139, 92, 246, 0.35));
}

h1,
h2,
h3 {
  line-height: 1.2;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.7rem);
  margin: 1rem 0 0.75rem;
}

h2 {
  font-size: clamp(1.35rem, 2.8vw, 2.1rem);
  margin: 0 0 0.85rem;
}

.hero p,
.lead {
  color: var(--muted);
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.07rem;
}

.container > section,
.about,
.focus,
.vision,
.initiatives,
.innovation,
.page-section {
  background: linear-gradient(180deg, rgba(30, 36, 56, 0.55), rgba(15, 19, 32, 0.8));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.6rem;
  margin-bottom: 1rem;
  box-shadow: 0 18px 38px rgba(5, 8, 16, 0.42);
}

ul {
  padding-left: 1.2rem;
}

li::marker {
  color: var(--gold);
}

.quote {
  margin: 1.1rem 0 0;
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--accent-2);
  background: rgba(34, 211, 238, 0.09);
  color: #dbeafe;
  font-style: italic;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1rem;
}

.expertise-grid .card {
  position: relative;
  padding-top: 2.7rem;
}

.operations-grid .card {
  position: relative;
  padding-top: 2.7rem;
}

.operations-grid .expertise-icon {
  background: rgba(34, 211, 238, 0.2);
  box-shadow: inset 0 0 0 1px rgba(34, 211, 238, 0.35);
}

.process-grid .card {
  position: relative;
  padding-top: 2.7rem;
}

.expertise-icon {
  position: absolute;
  top: 0.8rem;
  left: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.2);
  font-size: 0.95rem;
  line-height: 1;
}

.card {
  background: linear-gradient(165deg, rgba(26, 32, 50, 0.95), rgba(18, 22, 36, 0.95));
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
}

.card img {
  height: 46px;
  width: auto;
}

.page-hero-image {
  height: 100px;
  width: auto;
  max-width: 100%;
  border-radius: 14px;
  border: none;
  margin-bottom: 0.85rem;
}

.icon-title {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.2);
  box-shadow: inset 0 0 0 1px rgba(34, 211, 238, 0.35);
  font-size: 0.85rem;
  line-height: 1;
}

.card a {
  display: inline-block;
  margin-top: 0.45rem;
  font-weight: 600;
}

.micro-quote {
  margin-top: 0.75rem;
  margin-bottom: 0;
  color: #c7d2fe;
  font-style: italic;
  font-size: 0.92rem;
}

.footer {
  display: grid;
  gap: 0.6rem;
  border-top: 1px solid var(--line);
  margin-top: 2rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 1.1rem;
}

.page-section {
  min-height: 58vh;
}

@media (max-width: 740px) {
  .header {
    padding: 0.9rem 1rem;
  }

  .hero {
    padding-top: 3rem;
  }

}