:root {
  --bg: #f3f7fb;
  --surface: #ffffff;
  --surface-2: #ecf3f7;
  --text: #0b1f31;
  --muted: #4b6277;
  --line: #d1dde8;
  --primary: #0f766e;
  --primary-2: #115e59;
  --accent: #1e3a8a;
  --accent-2: #f97316;
  --shadow-sm: 0 12px 26px rgba(11, 31, 49, 0.08);
  --shadow-lg: 0 30px 70px rgba(11, 31, 49, 0.16);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: radial-gradient(circle at top left, rgba(14, 118, 110, 0.12), transparent 48%),
    radial-gradient(circle at 80% 0%, rgba(30, 58, 138, 0.16), transparent 46%),
    linear-gradient(180deg, #f7fafc 0%, #e8eff6 100%);
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

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

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.22;
  pointer-events: none;
  z-index: -1;
  animation: float 18s ease-in-out infinite;
}

.orb-1 {
  width: 320px;
  height: 320px;
  background: #2ad1c1;
  top: -120px;
  left: -80px;
}

.orb-2 {
  width: 380px;
  height: 380px;
  background: #5b8cff;
  bottom: -140px;
  right: -100px;
  animation-delay: -6s;
}

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

.narrow {
  width: min(820px, 100%);
  margin-inline: auto;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(14px);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--line);
  box-shadow: 0 8px 24px rgba(13, 35, 55, 0.08);
}

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

.logo {
  text-decoration: none;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  border-bottom: 2px solid transparent;
  padding-bottom: 3px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

nav a:hover,
nav a.active {
  color: var(--primary-2);
  border-color: var(--primary);
}

.hero {
  padding: 130px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.tag {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(15, 118, 110, 0.18), rgba(30, 58, 138, 0.14));
  color: var(--primary-2);
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 16px;
  font-size: clamp(2rem, 4.6vw, 4rem);
  max-width: 16ch;
}

.hero-lead {
  margin-top: 18px;
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.13rem);
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 13px 24px;
  background: linear-gradient(130deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: 0 16px 34px rgba(15, 118, 110, 0.3);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.btn:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 20px 40px rgba(15, 118, 110, 0.36);
}

.btn.ghost {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: 0 10px 20px rgba(10, 26, 43, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.btn.ghost:hover {
  border-color: rgba(30, 58, 138, 0.35);
}

.kpi-strip {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.kpi-strip article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.kpi-strip article:hover {
  transform: translateY(-4px);
  border-color: rgba(30, 58, 138, 0.25);
  box-shadow: 0 16px 34px rgba(11, 31, 49, 0.14);
}

.kpi-strip h3 {
  color: var(--accent);
  font-size: 1.05rem;
}

.kpi-strip p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  height: 510px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.7);
  transform: translateZ(0);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-media:hover img {
  transform: scale(1.02);
  box-shadow: 0 34px 80px rgba(11, 31, 49, 0.22);
}

.media-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: #fff;
  background: rgba(8, 28, 49, 0.68);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 0.92rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-media:hover .media-note {
  transform: translateY(-4px);
}

.section {
  padding: 86px 0;
}

.section-alt {
  background: linear-gradient(
    180deg,
    rgba(230, 239, 248, 0.8),
    rgba(240, 246, 252, 0.55)
  );
}

.section-kicker {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--primary-2);
}

.section h2 {
  text-align: center;
  margin-top: 10px;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
}

.section-intro {
  margin: 16px auto 0;
  max-width: 74ch;
  text-align: center;
  color: var(--muted);
}

.grid-3 {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.card {
  background: linear-gradient(160deg, #ffffff, #f6f9fc);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(15, 118, 110, 0.28);
  box-shadow: 0 18px 36px rgba(11, 31, 49, 0.16);
}

.card h3 {
  font-size: 1.08rem;
}

.card p {
  margin-top: 8px;
  color: var(--muted);
}

.photo-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.photo-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.photo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(30, 58, 138, 0.25);
  box-shadow: 0 18px 40px rgba(11, 31, 49, 0.18);
}

.photo-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.photo-card:hover img {
  transform: scale(1.04);
}

.photo-card figcaption {
  padding: 12px 14px;
  color: var(--text);
  font-weight: 600;
}

.check-list {
  list-style: none;
  margin-top: 30px;
  display: grid;
  gap: 10px;
}

.check-list li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px 12px 42px;
  position: relative;
  color: #284157;
  transition: transform 0.22s ease, border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.check-list li:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 118, 110, 0.2);
  box-shadow: 0 14px 26px rgba(11, 31, 49, 0.12);
}

.check-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  position: absolute;
  left: 14px;
  top: 14px;
  box-shadow: 0 0 0 3px rgba(4, 120, 87, 0.15);
}

.timeline {
  list-style: none;
  margin-top: 30px;
  display: grid;
  gap: 10px;
}

.timeline li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  color: #233b52;
  transition: transform 0.22s ease, border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.timeline li:hover {
  transform: translateY(-3px);
  border-color: rgba(30, 58, 138, 0.25);
  box-shadow: 0 14px 28px rgba(11, 31, 49, 0.14);
}

.timeline span {
  width: 32px;
  min-width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #1d4f74);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.contact-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(15, 118, 110, 0.25);
  box-shadow: 0 16px 32px rgba(11, 31, 49, 0.14);
}

.contact-card h3 {
  font-size: 1.04rem;
}

.contact-card p {
  margin-top: 6px;
  color: var(--muted);
}

.footer {
  padding: 26px 0;
  background: linear-gradient(130deg, #0b2235, #143a5a);
  color: #dde8f2;
}

.footer-wrap {
  text-align: center;
}

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

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

.hero-content,
.hero-media {
  animation: hero-in 0.8s ease both;
}

.hero-media {
  animation-delay: 0.15s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(18px);
  }
}

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

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    height: 390px;
  }
}

@media (max-width: 760px) {
  .nav-wrap {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 0;
  }

  nav ul {
    gap: 12px;
  }

  .hero {
    padding-top: 164px;
  }

  .hero h1 {
    max-width: 100%;
  }

  .kpi-strip {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .hero-media img,
  .photo-card img {
    height: 210px;
  }

  .section {
    padding: 72px 0;
  }
}
