:root {
  --teal: #0b7285;
  --green: #0ca678;
  --dark: #052536;
  --text: #17313b;
  --muted: #657987;
  --shadow: 0 18px 45px rgba(5, 37, 54, 0.15);
  --radius: 24px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    Segoe UI,
    Arial,
    sans-serif;
  background: linear-gradient(180deg, #eefbfc, #f8fbf7);
  color: var(--text);
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  width: min(1200px, 94%);
  margin: auto;
}
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(135deg, #052536, #0b7285, #0ca678);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  transition: 0.6s;
}
.loader.hide {
  opacity: 0;
  visibility: hidden;
}
.loader img {
  width: 115px;
  height: 115px;
  margin-bottom: 16px;
  animation: float 2s infinite;
}
.loader h2 {
  font-size: 30px;
}
.loader p {
  margin: 8px 0 18px;
}
.loader-bar {
  width: 280px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  overflow: hidden;
}
.loader-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: #8ce99a;
  animation: loader 1.8s forwards;
}
@keyframes loader {
  to {
    width: 100%;
  }
}
@keyframes float {
  50% {
    transform: translateY(-8px);
  }
}
.topbar {
  background: #052536;
  color: #dffafe;
  font-size: 14px;
}
.topbar-content {
  min-height: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.top-left,
.topbar nav {
  display: flex;
  gap: 17px;
  flex-wrap: wrap;
  align-items: center;
}
.topbar a:hover {
  color: #8ce99a;
}
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(11, 114, 133, 0.14);
}
.header-content {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 15px;
}
.brand img {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.brand h1 {
  font-size: 27px;
  color: #073b4c;
}
.brand p {
  font-weight: 800;
  color: var(--teal);
}
.header-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.btn {
  padding: 12px 15px;
  border-radius: 15px;
  font-weight: 800;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  transition: 0.25s;
}
.btn-soft {
  background: #eef9fb;
  color: #0b7285;
}
.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--green));
  color: #fff;
  box-shadow: 0 12px 25px rgba(12, 166, 120, 0.28);
}
.btn:hover {
  transform: translateY(-2px);
}
.hero {
  min-height: 550px;
  position: relative;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: ken 6.5s ease forwards;
}
@keyframes ken {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 37, 54, 0.92),
    rgba(5, 37, 54, 0.55),
    rgba(5, 37, 54, 0.16)
  );
}
.hero-content {
  position: relative;
  min-height: 550px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  z-index: 3;
}
.hero-kicker {
  width: max-content;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(140, 233, 154, 0.17);
  border: 1px solid rgba(140, 233, 154, 0.38);
  font-weight: 900;
  margin-bottom: 18px;
}
.hero-content h2 {
  font-size: 54px;
  line-height: 1.04;
  max-width: 820px;
  margin-bottom: 18px;
}
.hero-content p {
  font-size: 19px;
  max-width: 710px;
  color: #e3faff;
  line-height: 1.65;
}
.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-hero,
.btn-outline {
  padding: 16px 23px;
  border-radius: 18px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.25s;
}
.btn-hero {
  background: linear-gradient(135deg, var(--green), #20c997);
  color: white;
  box-shadow: 0 16px 30px rgba(12, 166, 120, 0.35);
}
.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: white;
  background: rgba(255, 255, 255, 0.1);
}
.btn-hero:hover,
.btn-outline:hover {
  transform: translateY(-3px);
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: #073b4c;
  font-size: 24px;
  cursor: pointer;
}
.hero-arrow.left {
  left: 28px;
}
.hero-arrow.right {
  right: 28px;
}
.hero-bottom {
  position: absolute;
  bottom: 26px;
  left: 0;
  right: 0;
  z-index: 7;
}
.hero-bottom-content {
  display: flex;
  align-items: center;
  gap: 18px;
}
.dots {
  display: flex;
  gap: 9px;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}
.dot.active {
  width: 34px;
  border-radius: 999px;
  background: #8ce99a;
}
.progress {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  overflow: hidden;
}
.progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #8ce99a, #20c997);
}
.grid-main {
  display: grid;
  grid-template-columns: 25% 45% 30%;
  gap: 24px;
  padding: 38px 0;
  align-items: start;
}
.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.section-title i {
  font-size: 28px;
  color: var(--teal);
}
.section-title h3 {
  color: #073b4c;
  font-size: 20px;
}
.info-card,
.access-card,
.legal-box,
.right-column {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.info-card {
  padding: 20px;
  margin-bottom: 16px;
  border: 1px solid rgba(11, 114, 133, 0.1);
  transition: 0.25s;
}
.info-card:hover {
  transform: translateY(-5px);
}
.info-card i {
  font-size: 34px;
  color: var(--teal);
}
.info-card h4 {
  margin: 12px 0 8px;
  color: #073b4c;
}
.info-card p {
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}
.alert-card i {
  color: #f08c00;
}
.access-card {
  text-align: center;
  padding: 34px 28px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(12, 166, 120, 0.13),
      transparent 35%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(11, 94, 215, 0.12),
      transparent 35%
    ),
    white;
}
.glow {
  position: absolute;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(12, 166, 120, 0.13);
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  animation: pulse 2.8s infinite;
}
@keyframes pulse {
  50% {
    opacity: 0.9;
    transform: translateX(-50%) scale(1.07);
  }
}
.access-logo {
  position: relative;
  width: 112px;
  height: 112px;
  margin-bottom: 14px;
  animation: float 3s infinite;
}
.status {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e6fcf5;
  color: #087f5b;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 12px;
}
.access-card h2 {
  font-size: 30px;
  color: #073b4c;
}
.access-card h4 {
  color: var(--teal);
  margin: 8px 0 14px;
}
.access-card p {
  color: var(--muted);
  line-height: 1.7;
}
.big-btn {
  margin: 24px auto 16px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 18px 30px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--teal), var(--green));
  color: white;
  font-weight: 900;
  box-shadow: 0 18px 34px rgba(11, 114, 133, 0.28);
  font-size: 18px;
  transition: 0.25s;
}
.big-btn:hover {
  transform: translateY(-4px) scale(1.02);
}
.security-note {
  background: #f1fbf7;
  color: #164b35;
  padding: 13px 15px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
  font-weight: 650;
}
.quick-links {
  display: flex;
  gap: 9px;
  justify-content: center;
  flex-wrap: wrap;
}
.quick-links a {
  padding: 9px 12px;
  background: #eef9fb;
  border-radius: 999px;
  color: #0b7285;
  font-weight: 800;
  font-size: 14px;
}
.legal-box {
  margin-top: 22px;
  padding: 25px;
  border-left: 8px solid var(--teal);
}
.legal-box h3 {
  margin-bottom: 12px;
  color: #073b4c;
}
.legal-box p {
  color: var(--muted);
  line-height: 1.7;
}
.legal-box ul {
  margin-top: 15px;
  list-style: none;
  display: grid;
  gap: 10px;
}
.legal-box li {
  background: #f1fbf7;
  padding: 11px 13px;
  border-radius: 14px;
  color: #164b35;
  font-weight: 700;
}
.legal-box i {
  color: #0ca678;
}
.right-column {
  padding: 20px;
}
.vertical-card {
  min-height: 185px;
  border-radius: 22px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  position: relative;
  margin-bottom: 16px;
  transition: 0.25s;
}
.vertical-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
}
.vertical-card div {
  position: relative;
  color: white;
  padding: 18px;
}
.vertical-card span {
  display: inline-block;
  background: rgba(12, 166, 120, 0.88);
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 9px;
}
.vertical-card:hover {
  transform: translateY(-5px);
}
.magazine-box {
  background: #eef9fb;
  border-radius: 18px;
  padding: 16px;
}
.magazine-box h4 {
  color: #073b4c;
  margin-bottom: 10px;
}
.magazine-box a {
  display: block;
  padding: 9px 0;
  color: #0b7285;
  font-weight: 750;
  border-bottom: 1px solid rgba(11, 114, 133, 0.12);
}
.prefooter {
  background: #073b4c;
  color: #e7f9ff;
  padding: 45px 0;
  position: relative;
  overflow: hidden;
}
.prefooter:before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.035) 0 1px,
    transparent 1px 90px
  );
  animation: lines 12s linear infinite;
}
@keyframes lines {
  to {
    transform: translateX(90px);
  }
}
.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.prefooter h3 {
  color: #8ce99a;
  margin-bottom: 14px;
}
.prefooter p,
.prefooter a {
  display: block;
  color: #d8f3fa;
  margin-bottom: 10px;
  line-height: 1.5;
}
.prefooter a:hover {
  color: #8ce99a;
}
.social {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.social a {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  font-size: 20px;
}
iframe {
  width: 100%;
  height: 185px;
  border: 0;
  border-radius: 18px;
}
footer {
  background: #031926;
  color: #bddce5;
  text-align: center;
  padding: 18px;
  font-size: 14px;
}
footer p + p {
  margin-top: 5px;
  opacity: 0.8;
}
@media (max-width: 1050px) {
  .grid-main {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .header-content,
  .topbar-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 13px 0;
  }
  .hero-content h2 {
    font-size: 40px;
  }
  .hero-arrow {
    display: none;
  }
}
@media (max-width: 680px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero,
  .hero-content {
    min-height: 520px;
  }
  .hero-content h2 {
    font-size: 31px;
  }
  .hero-content p {
    font-size: 16px;
  }
  .brand h1 {
    font-size: 22px;
  }
  .header-actions a {
    width: 100%;
    justify-content: center;
  }
}
