:root {
  --bg: #f7f8fb;
  --text: #17202a;
  --muted: #5e6a75;
  --card: #ffffff;
  --border: #dde3ea;
  --primary: #1f4f82;
  --primary-dark: #153a61;
  --accent: #eaf2fb;
  --shadow: 0 12px 32px rgba(23, 32, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 700;
}

.hero {
  padding: 96px 0;
  background:
    linear-gradient(135deg, rgba(31, 79, 130, 0.94), rgba(21, 58, 97, 0.98)),
    radial-gradient(circle at top right, #6da7df, transparent 35%);
  color: #ffffff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr;
  gap: 42px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d7e8f8;
  font-size: 0.82rem;
}

.eyebrow.dark {
  color: var(--primary);
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.hero-text {
  max-width: 760px;
  font-size: 1.18rem;
  color: #edf5fc;
  margin-bottom: 32px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 700;
}

.button.primary {
  background: #ffffff;
  color: var(--primary-dark);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: #ffffff;
}

.hero-panel {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.hero-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  display: block;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14);
  padding: 12px;
}

.hero-panel p {
  margin: 10px 0;
  font-weight: 700;
  color: #ffffff;
}

.section {
  padding: 72px 0;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 28px;
}

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

.card,
.info-box,
.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.card,
.info-box {
  padding: 24px;
}

.card h3,
.info-box h3 {
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.card p,
.info-box p,
.split p,
.contact-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.split {
  background: var(--accent);
}

.split-content {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 32px;
  align-items: start;
}

.info-box ul {
  padding-left: 20px;
  margin-bottom: 0;
  color: var(--muted);
}

.contact-section {
  background: var(--bg);
}

.contact-card {
  padding: 32px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.contact-details p {
  margin: 8px 0;
}

.site-footer {
  padding: 28px 0;
  background: #111827;
  color: #d1d5db;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-content p {
  margin: 0;
}

@media (max-width: 860px) {
  .nav,
  .nav-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    padding: 16px 0;
  }

  .hero {
    padding: 72px 0;
  }

  .hero-grid,
  .grid,
  .split-content,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 54px 0;
  }
}
