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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #e8f3ff 0, #f5ecff 35%, #f8f6ff 60%, #e8f8ff 100%);
  color: #102a43;
  min-height: 100vh;
}

.page-wrapper {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* ORBS BACKGROUND */
.orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.6;
  z-index: -1;
  pointer-events: none;
}

.orb-1 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle at 30% 30%, #7c5cff, #3fb8ff);
  top: -80px;
  left: -120px;
  animation: float 16s ease-in-out infinite alternate;
}

.orb-2 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle at 30% 30%, #ff8acb, #ffcf71);
  bottom: -120px;
  right: -80px;
  animation: float 18s ease-in-out infinite alternate-reverse;
}

.orb-3 {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle at 30% 30%, #4cf1c0, #3f9bff);
  top: 40%;
  left: 60%;
  animation: float 22s ease-in-out infinite alternate;
}

@keyframes float {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(30px, -40px, 0); }
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: linear-gradient(90deg, rgba(248, 247, 255, 0.95), rgba(230, 244, 255, 0.95));
  border-bottom: 1px solid rgba(136, 152, 170, 0.18);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.brand-logo-circle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #7c5cff, #3fb8ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #f9fbff;
  box-shadow: 0 8px 18px rgba(65, 115, 255, 0.45);
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 0.7rem;
  color: #627d98;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  color: #243b53;
  position: relative;
  padding-bottom: 0.1rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #7c5cff, #3fb8ff);
  border-radius: 999px;
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* NAV TOGGLE (MOBILE) */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  background: #243b53;
  height: 2px;
  width: 22px;
  border-radius: 999px;
  position: relative;
  transition: all 0.2s ease;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-label span::before {
  top: -6px;
}

.nav-toggle-label span::after {
  top: 6px;
}

.nav-toggle:checked + .nav-toggle-label span {
  background: transparent;
}

.nav-toggle:checked + .nav-toggle-label span::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle:checked + .nav-toggle-label span::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* SECTIONS */
.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-header h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, #7c5cff, #3fb8ff);
  -webkit-background-clip: text;
  color: transparent;
}

.section-header p {
  font-size: 0.98rem;
  color: #486581;
}

/* HERO */
.hero {
  padding-top: 5rem;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.75rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.1rem, 3vw + 1.2rem, 2.9rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  color: #102a43;
}

.highlight {
  background: linear-gradient(120deg, #7c5cff, #3fb8ff, #4cf1c0);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: #486581;
  max-width: 520px;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn.primary {
  background: linear-gradient(120deg, #7c5cff, #3fb8ff);
  color: #f9fbff;
  box-shadow: 0 14px 30px rgba(68, 129, 255, 0.45);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(68, 129, 255, 0.55);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.8);
  color: #243b53;
  border: 1px solid rgba(151, 172, 204, 0.5);
  backdrop-filter: blur(6px);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.9);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  font-size: 0.8rem;
}

.stat-item {
  padding: 0.6rem 0.9rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 25px rgba(64, 112, 244, 0.12);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.stat-value {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
  color: #243b53;
}

.stat-label {
  color: #627d98;
}

/* HERO PANEL */
.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  width: 100%;
  max-width: 320px;
  padding: 1.4rem 1.3rem;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(232, 244, 255, 0.96));
  box-shadow: 0 18px 40px rgba(80, 112, 255, 0.3);
  border: 1px solid rgba(151, 172, 204, 0.45);
  backdrop-filter: blur(12px);
}

.floating {
  animation: levitate 7s ease-in-out infinite alternate;
}

@keyframes levitate {
  0% {
    transform: translateY(0) translateZ(0);
  }
  100% {
    transform: translateY(-10px) translateZ(0);
  }
}

.hero-mini-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #334e68;
  margin-bottom: 0.75rem;
}

.hero-mini-list {
  list-style: none;
  font-size: 0.82rem;
  color: #486581;
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.8rem;
}

.dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  margin-right: 0.35rem;
}

.dot-connect {
  background: linear-gradient(135deg, #3fb8ff, #7c5cff);
}

.dot-travel {
  background: linear-gradient(135deg, #ff8acb, #ffcf71);
}

.dot-pay {
  background: linear-gradient(135deg, #4cf1c0, #3fb8ff);
}

.dot-gaming {
  background: linear-gradient(135deg, #ff9d6c, #ff5d7a);
}

.dot-bot {
  background: linear-gradient(135deg, #8e7cff, #3fe6ff);
}

.hero-mini-footer {
  font-size: 0.8rem;
  color: #627d98;
}

/* VISION */
.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.vision-card {
  padding: 1.4rem 1.3rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(210, 218, 235, 0.9);
  box-shadow: 0 14px 30px rgba(136, 152, 170, 0.26);
  font-size: 0.9rem;
  color: #486581;
}

.vision-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #243b53;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-card {
  padding: 1.4rem 1.3rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(204, 214, 235, 0.95);
  box-shadow: 0 16px 34px rgba(112, 144, 176, 0.3);
  font-size: 0.9rem;
  color: #486581;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -60%;
  background: radial-gradient(circle at top right, rgba(127, 92, 255, 0.16), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: #243b53;
}

.service-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  color: #102a43;
}

/* Pills colors */
.service-pill-connect {
  background: linear-gradient(120deg, #daf3ff, #e1dcff);
}

.service-pill-travel {
  background: linear-gradient(120deg, #ffe5f4, #ffe9d2);
}

.service-pill-pay {
  background: linear-gradient(120deg, #ddfff4, #def5ff);
}

.service-pill-gaming {
  background: linear-gradient(120deg, #ffe6da, #ffe3f0);
}

.service-pill-bot {
  background: linear-gradient(120deg, #e3ddff, #dcf9ff);
}

.service-link {
  display: inline-flex;
  align-items: center;
  margin-top: 0.7rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  color: #355e9b;
  position: relative;
}

.service-link::after {
  content: "↗";
  font-size: 0.8rem;
  margin-left: 0.25rem;
}

/* ASSOCIER */
.associer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.associer-text {
  font-size: 0.95rem;
  color: #486581;
}

.associer-text h3 {
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
  color: #243b53;
}

.associer-list {
  margin: 0.9rem 0 1.1rem;
  padding-left: 1.1rem;
}

.associer-list li {
  margin-bottom: 0.35rem;
}

.associer-panel {
  padding: 1.3rem 1.2rem;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(226, 243, 255, 0.97));
  border: 1px solid rgba(190, 206, 234, 0.9);
  box-shadow: 0 18px 38px rgba(113, 140, 232, 0.35);
}

.associer-panel h4 {
  font-size: 1rem;
  margin-bottom: 0.8rem;
  color: #243b53;
}

.associer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
  list-style: none;
}

.associer-badges li {
  font-size: 0.75rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(120deg, #e2f0ff, #f3e9ff);
  color: #243b53;
  font-weight: 600;
}

.associer-note {
  font-size: 0.85rem;
  color: #486581;
}

/* CONTACT */
.contact-box {
  max-width: 540px;
  margin: 0 auto;
  padding: 1.6rem 1.5rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(210, 218, 235, 0.95);
  box-shadow: 0 16px 34px rgba(112, 144, 176, 0.32);
  text-align: center;
}

.contact-text {
  font-size: 0.95rem;
  color: #486581;
  margin-bottom: 1rem;
}

.contact-btn {
  margin-bottom: 0.8rem;
}

.contact-alt {
  font-size: 0.86rem;
  color: #627d98;
}

.contact-alt span {
  font-weight: 600;
  color: #243b53;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 2rem 1.5rem 2.5rem;
  font-size: 0.82rem;
  color: #627d98;
}

.footer-sub {
  margin-top: 0.2rem;
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero-content {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-panel {
    justify-content: flex-start;
  }

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

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

  .associer-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .nav-inner {
    padding-inline: 1rem;
  }

  .nav-toggle-label {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 1.5rem;
    margin-top: 0.4rem;
    padding: 0.7rem 0.9rem;
    border-radius: 16px;
    background: rgba(247, 248, 255, 0.98);
    border: 1px solid rgba(203, 213, 224, 0.8);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.18);
    display: none;
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-toggle:checked ~ .nav-links {
    display: flex;
  }

  .hero {
    padding-top: 4.2rem;
  }

  .section {
    padding: 3.5rem 1.25rem;
  }

  .vision-grid,
  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .stat-item {
    flex: 1 1 100px;
  }
}
