/* === GLOBAL === */
body.body-bg {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", Arial, sans-serif;
  background: radial-gradient(ellipse at top left, #23272b 60%, #141619 100%);
  color: #fff;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* === NAVBAR === */
.navbar {
  width: 100%;
  background: rgba(20, 22, 25, 0.9);
  position: fixed;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 24px 0 rgba(0, 0, 0, 0.15);
}

.navbar-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 30px 22px 30px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
  cursor: pointer;
}

.logo-text {
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar-link {
  color: #b5b5b5;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.18s;
  position: relative;
  padding-bottom: 3px;
}

.navbar-link.active,
.navbar-link:hover {
  color: #22b4e9;
}

.navbar-btn {
  background: #22b4e9;
  color: #fff;
  font-size: 1.09rem;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 32px;
  box-shadow: 0 2px 24px 0 rgba(34, 180, 233, 0.18);
  transition: background 0.15s, color 0.18s, box-shadow 0.2s;
}

.navbar-btn:hover {
  background: #1a8ec5;
  color: #fff;
  box-shadow: 0 4px 32px 0 rgba(34, 180, 233, 0.2);
}

/* === DIVIDER / ANIMATION === */
.divider-animated {
  height: 5px;
  background: linear-gradient(90deg, #19d7ff 15%, #22b4e9 60%, transparent 98%);
  margin: 0 auto;
  width: 74%;
  border-radius: 2px;
  animation: dividerWave 6s infinite linear alternate;
  opacity: 0.8;
}

@keyframes dividerWave {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 100%;
  }
}

/* === CTA SECTION === */
.cta-section {
  width: 100%;
  padding: 90px 0 60px 0;
  background: linear-gradient(90deg, #14181b 70%, #212328 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 340px;
  z-index: 1;
}

.cta-bg {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background: url("cta-bg-waves.svg") center/cover no-repeat;
  z-index: 0;
  pointer-events: none;
}

.cta-content {
  z-index: 2;
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding: 44px 36px;
  border-radius: 36px;
  background: rgba(35, 39, 43, 0.9);
  box-shadow: 0 4px 32px 0 rgba(34, 180, 233, 0.13);
  text-align: center;
}

.cta-title {
  font-size: 2.07rem;
  color: #22b4e9;
  font-weight: 700;
  margin-bottom: 18px;
}

.cta-desc {
  font-size: 1.13rem;
  color: #eee;
  margin-bottom: 29px;
}

.cta-btn {
  background: linear-gradient(90deg, #19d7ff 30%, #22b4e9 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1.18rem;
  padding: 15px 40px;
  border-radius: 44px;
  box-shadow: 0 6px 32px 0 rgba(34, 180, 233, 0.17);
  border: none;
  cursor: pointer;
  transition: background 0.14s, box-shadow 0.16s;
  outline: none;
}

.cta-btn:hover {
  background: #1a8ec5;
  color: #fff;
  box-shadow: 0 10px 40px 0 rgba(34, 180, 233, 0.24);
}

/* === FOOTER === */
.footer-shortcut {
  background: #191a1e;
  padding: 46px 0 20px 0;
  color: #d1d1d1;
  width: 100%;
  margin-top: 0;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 32px 0 32px;
  gap: 26px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.footer-logo-img {
  width: 40px;
  height: auto;
}

.footer-logo-text {
  font-size: 1.31rem;
  font-weight: 600;
  color: #22b4e9;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.08rem;
}

.footer-icon {
  width: 21px;
  height: 21px;
}

.footer-address {
  font-size: 1.01rem;
  margin-top: 12px;
}

.footer-address-title {
  font-weight: 700;
  color: #22b4e9;
  display: block;
  margin-bottom: 3px;
}

.footer-address-text {
  font-weight: 400;
  color: #d7d7d7;
}

.footer-copyright {
  text-align: center;
  font-size: 0.98rem;
  color: #828282;
  margin-top: 38px;
  opacity: 0.85;
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .navbar-container,
  .why-container,
  .footer-container,
  .hero-content,
  .cta-content {
    max-width: 98vw;
    padding-left: 18px;
    padding-right: 18px;
  }
  .why-cards {
    gap: 20px;
  }
  .hero-image {
    max-width: 340px;
  }
}

@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 34px;
    padding-top: 48px;
    padding-bottom: 12px;
  }
  .hero-left {
    width: 100%;
    margin-bottom: 18px;
    align-items: flex-start;
  }
  .hero-right {
    width: 100%;
    justify-content: flex-start;
  }
  .why-cards {
    flex-direction: column;
    gap: 26px;
  }
  .why-card {
    max-width: 99vw;
    margin: 0 auto;
  }
  .footer-container {
    flex-direction: column;
    gap: 18px;
  }
  .footer-contact,
  .footer-address {
    margin-bottom: 18px;
  }
}

@media (max-width: 620px) {
  .navbar-container {
    flex-direction: column;
    gap: 13px;
    padding: 14px 8px 14px 8px;
  }
  .navbar-menu {
    gap: 18px;
  }
  .navbar-btn {
    padding: 10px 16px;
    font-size: 0.96rem;
  }
  .hero-title {
    font-size: 1.66rem;
  }
  .hero-title-gradient {
    font-size: 1.13rem;
  }
  .hero-description {
    font-size: 0.95rem;
    max-width: 98vw;
  }
  .hero-btn {
    padding: 11px 23px;
    font-size: 0.99rem;
  }
  .hero-image {
    max-width: 94vw;
    min-width: 110px;
  }
  .why-title {
    font-size: 1.15rem;
    margin-bottom: 22px;
  }
  .why-card-title {
    font-size: 1.01rem;
  }
  .why-card-desc {
    font-size: 0.92rem;
  }
  .cta-title {
    font-size: 1.11rem;
  }
  .cta-content {
    padding: 21px 7px;
  }
}

/* === SCROLLBAR CUSTOM === */
body::-webkit-scrollbar {
  width: 8px;
  background: #1a1c1e;
}
body::-webkit-scrollbar-thumb {
  background: #22b4e9;
  border-radius: 4px;
}
