:root {
  --bg-deep: #041c2c;
  --bg-mid: #0a2f47;
  --bg-light: #e7f4fb;
  --surface: #ffffff;
  --surface-soft: #f4fafc;
  --text-main: #0f1f2f;
  --text-muted: #4c6072;
  --accent: #17a8d1;
  --accent-strong: #0f8eb3;
  --success: #0b7f5f;
  --border: #d5e4ee;
  --shadow: 0 14px 36px rgba(4, 28, 44, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at 18% 0%, rgba(23, 168, 209, 0.17), transparent 42%),
    radial-gradient(circle at 86% 6%, rgba(11, 127, 95, 0.16), transparent 40%),
    linear-gradient(180deg, #f5fbfe 0%, #ebf4fa 48%, #f8fbfd 100%);
  line-height: 1.5;
}

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

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

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

header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid rgba(13, 40, 62, 0.08);
  backdrop-filter: blur(10px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand img {
  width: 148px;
  height: auto;
}

.brand span {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

nav.main-nav a {
  font-weight: 700;
  color: #16364f;
  font-size: 0.96rem;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--accent-strong);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 0.6rem;
  padding: 0.5rem 0.65rem;
  font-size: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.65rem;
  padding: 0.72rem 1.1rem;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #fff;
  box-shadow: 0 12px 24px rgba(15, 142, 179, 0.25);
}

.btn-secondary {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text-main);
}

.hero {
  padding: 4.4rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 2rem;
}

.eyebrow {
  display: inline-block;
  color: var(--success);
  background: rgba(11, 127, 95, 0.11);
  border: 1px solid rgba(11, 127, 95, 0.25);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Sora", "Segoe UI", sans-serif;
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(1.9rem, 3.1vw, 3.4rem);
  margin: 1rem 0;
  color: #09253c;
}

.section {
  padding: 2.5rem 0;
}

.section h2 {
  font-size: clamp(1.4rem, 2.2vw, 2.1rem);
  margin-bottom: 0.8rem;
}

.lead {
  color: var(--text-muted);
  font-size: 1.04rem;
}

.card-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.contact-grid {
  grid-template-columns: 1.1fr 1fr;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.4rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.card-action {
  margin-top: 1rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.badge {
  border: 1px solid #cde4ef;
  background: #f3fbff;
  color: #11506b;
  padding: 0.3rem 0.58rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.8rem;
}

.kpi-wrap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.kpi {
  border-radius: 0.8rem;
  border: 1px solid var(--border);
  background: var(--surface-soft);
  padding: 1rem;
}

.kpi strong {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.5rem;
}

.media-card {
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(13, 40, 62, 0.1);
  background: var(--surface);
}

.media-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.media-card .caption {
  padding: 0.75rem 0.9rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.cta-band {
  border-radius: 1.2rem;
  background: linear-gradient(120deg, #06304b 0%, #0f5578 100%);
  color: #eaf8ff;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1.4fr auto;
  align-items: center;
  gap: 1rem;
}

.placeholder {
  border: 1px dashed #86adc1;
  border-radius: 0.9rem;
  background: #f2f9fd;
  color: #325a73;
  padding: 1rem;
}

footer {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(13, 40, 62, 0.1);
  background: rgba(255, 255, 255, 0.78);
}

.footer-wrap {
  padding: 1.2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-follow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.social-follow span {
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.9rem;
}

.social-follow a {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.social-follow a:hover {
  transform: translateY(-1px);
  border-color: #9bb8cb;
}

.social-follow img {
  display: block;
  max-height: 18px;
  width: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  animation: rise 0.6s ease forwards;
}

.reveal.delay-1 {
  animation-delay: 0.15s;
}

.reveal.delay-2 {
  animation-delay: 0.3s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .cta-band {
    grid-template-columns: 1fr;
  }

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

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

  .kpi-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .menu-toggle {
    display: inline-flex;
  }

  nav.main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    padding: 1rem;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

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

  .card-grid,
  .kpi-wrap {
    grid-template-columns: 1fr;
  }

  .media-card img {
    height: 240px;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 126px;
  }
}
