:root {
  --navy: #061449;
  --blue: #0067ff;
  --cyan: #14d7e8;
  --purple: #7a3cff;
  --bg: #f8fbff;
  --card: rgba(255, 255, 255, .82);
  --text: #07123b;
  --muted: #5d6685;
  --line: rgba(0, 103, 255, .14);
  --shadow: 0 24px 70px rgba(6, 20, 73, .10);
}

html[data-theme="dark"] {
  --bg: #050b22;
  --card: rgba(10, 20, 55, .78);
  --text: #f4f8ff;
  --muted: #b8c3e7;
  --line: rgba(20, 215, 232, .20);
  --shadow: 0 24px 80px rgba(0, 0, 0, .38);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  transition: background .35s, color .35s
}

img {
  max-width: 100%;
  height: auto;
}

.bg-grid {
  position: fixed;
  inset: -100%;
  background-image: linear-gradient(rgba(0, 103, 255, .055) 2px, transparent 2px), linear-gradient(90deg, rgba(0, 103, 255, .055) 2px, transparent 2px);
  background-size: 60px 60px;
  z-index: -4;
  transform-origin: center;
  transform: perspective(1000px) rotateX(60deg) translateY(0) translateZ(-200px);
  animation: gridScroll 15s linear infinite;
  mask-image: radial-gradient(circle at center, black 15%, transparent 65%);
  -webkit-mask-image: radial-gradient(circle at center, black 15%, transparent 65%);
}

@keyframes gridScroll {
  from {
    transform: perspective(1000px) rotateX(60deg) translateY(0) translateZ(-200px);
  }

  to {
    transform: perspective(1000px) rotateX(60deg) translateY(60px) translateZ(-200px);
  }
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(45px);
  opacity: .36;
  z-index: -3;
  pointer-events: none
}

.orb-1 {
  width: 420px;
  height: 420px;
  background: var(--cyan);
  right: -130px;
  top: 70px
}

.orb-2 {
  width: 520px;
  height: 520px;
  background: var(--purple);
  left: -220px;
  bottom: -120px
}

.cursor {
  position: fixed;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  pointer-events: none;
  z-index: 1000;
  transform: translate(-50%, -50%);
  opacity: .65
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 5vw;
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line)
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  font-weight: 900;
  font-size: 24px
}

.brand img {
  width: 58px
}

.brand b {
  font-weight: 400
}

.desktop-nav {
  display: flex;
  gap: 26px;
}

.desktop-nav a {
  position: relative;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  transition: width 0.3s ease;
}

.desktop-nav a:hover {
  color: var(--blue);
}

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

.nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
}

/* Mobile Nav Styles */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 28px;
  cursor: pointer;
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: color-mix(in srgb, var(--bg) 95%, transparent);
  backdrop-filter: blur(12px);
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.mobile-nav-overlay.open {
  transform: translateY(0);
  opacity: 1;
}

.close-menu-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 40px;
  cursor: pointer;
  transition: transform 0.3s;
}

.close-menu-btn:hover {
  transform: rotate(90deg);
  color: var(--blue);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}

.mobile-nav-links a {
  font-size: 24px;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  transition: color 0.3s, transform 0.3s;
}

.mobile-nav-links a:hover {
  color: var(--blue);
  transform: scale(1.1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px
}

.theme-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--card);
  cursor: pointer;
  font-size: 18px
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: white !important;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(0, 103, 255, .25);
  cursor: pointer
}

.btn.ghost {
  background: var(--card);
  color: var(--blue) !important;
  border: 1px solid var(--line)
}

.small {
  padding: 10px 16px
}

.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items: center;
  padding: 72px 5vw
}

.eyebrow {
  letter-spacing: .22em;
  font-weight: 900;
  color: var(--blue);
  font-size: 13px
}

.center {
  text-align: center
}

h1 {
  font-size: clamp(34px, 7vw, 90px);
  line-height: 1.1;
  margin: 14px 0
}

h1 span,
h2 span,
.gradient-text {
  background: linear-gradient(135deg, var(--blue), var(--cyan), var(--purple));
  -webkit-background-clip: text;
  color: transparent
}

h2 {
  font-size: clamp(28px, 6vw, 56px);
  line-height: 1.1;
  margin: 0 0 18px;
  text-align: center
}

.lead,
.section-intro {
  font-size: 19px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 780px
}

.section-intro {
  text-align: center;
  margin: 0 auto 34px
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 30px 0
}

.stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap
}

.stats div,
.glass,
.category-card,
.price-card,
.contact-cards a {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 28px
}

.stats div {
  padding: 18px 24px
}

.stats b {
  display: block;
  font-size: 28px;
  color: var(--blue)
}

.stats small {
  color: var(--muted);
  font-weight: 800
}

.hero-visual {
  position: relative;
  min-height: 520px;
  perspective: 1000px
}

.logo-planet {
  position: absolute;
  inset: 55px 35px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgba(255, 255, 255, .92), rgba(20, 215, 232, .18), rgba(122, 60, 255, .10));
  transform-style: preserve-3d;
  animation: tilt 6s ease-in-out infinite
}

.logo-planet img {
  width: 78%;
  filter: drop-shadow(0 30px 35px rgba(0, 54, 140, .28))
}

.ring {
  position: absolute;
  border: 2px solid rgba(20, 215, 232, .35);
  border-radius: 50%;
  inset: 12%;
  transform: rotateX(68deg);
  animation: spin 9s linear infinite
}

.r2 {
  inset: 22%;
  border-color: rgba(122, 60, 255, .35);
  animation-duration: 13s
}

.float-card {
  position: absolute;
  padding: 18px 24px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(0, 103, 255, .92), rgba(122, 60, 255, .92));
  color: white;
  font-weight: 900;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .18);
  animation: float 4s ease-in-out infinite
}

.c1 {
  left: 0;
  top: 90px
}

.c2 {
  right: 20px;
  top: 230px;
  animation-delay: .8s
}

.c3 {
  left: 90px;
  bottom: 80px;
  animation-delay: 1.4s
}

.section {
  padding: 82px 5vw
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-bottom: 28px
}

.category-card {
  padding: 22px 14px;
  text-align: center;
  color: var(--text);
  cursor: pointer;
  transition: .35s;
  min-height: 150px
}

.category-card span {
  font-size: 34px;
  display: block
}

.category-card b {
  display: block;
  margin: 10px 0 6px
}

.category-card small {
  color: var(--muted);
  font-weight: 700
}

.category-card:hover,
.category-card.active {
  transform: translateY(-8px);
  border-color: rgba(20, 215, 232, .55);
  box-shadow: 0 30px 80px rgba(0, 103, 255, .16)
}

.service-detail {
  padding: 34px
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start
}

.detail-copy h3 {
  font-size: 34px;
  margin: 0 0 14px
}

.detail-copy p {
  color: var(--muted);
  line-height: 1.8
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px
}

.feature-list span {
  padding: 12px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 103, 255, .10), rgba(20, 215, 232, .10));
  font-weight: 800
}

.mini-prices {
  display: grid;
  gap: 14px
}

.mini-price {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: color-mix(in srgb, var(--card) 80%, transparent)
}

.mini-price b {
  font-size: 22px
}

.mini-price strong {
  display: block;
  margin-top: 6px;
  font-size: 24px;
  color: var(--blue)
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.price-card {
  padding: 26px;
  position: relative;
  overflow: hidden
}

.price-card:before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 8px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--purple))
}

.price-card h3 {
  font-size: 24px;
  margin: 16px 0 8px
}

.price {
  font-size: 34px;
  font-weight: 900;
  color: var(--blue);
  margin: 12px 0
}

.price-card ul {
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.9
}

.marquee {
  overflow: hidden;
  background: linear-gradient(90deg, var(--navy), var(--blue), var(--purple));
  color: white;
  font-weight: 900;
  letter-spacing: .18em;
  padding: 18px 0
}

.marquee div {
  white-space: nowrap;
  animation: mar 18s linear infinite
}

.about {
  background: linear-gradient(135deg, rgba(0, 103, 255, .08), rgba(20, 215, 232, .12), rgba(122, 60, 255, .08))
}

.about-box {
  padding: 50px;
  max-width: 1000px;
  margin: auto
}

.about-box h2 {
  text-align: left
}

.about-box p {
  color: var(--muted);
  line-height: 1.8
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px
}

.about-points span {
  padding: 12px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 103, 255, .12), rgba(20, 215, 232, .12));
  font-weight: 900
}

.contact {
  text-align: center
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 30px
}

.contact-cards a {
  padding: 22px;
  text-decoration: none;
  color: var(--text);
  font-weight: 900;
  display: grid;
  gap: 6px
}

.contact-cards span {
  color: var(--muted);
  font-weight: 700;
  font-size: 14px
}

.whatsapp-float,
.chatbot-float,
.top-btn {
  position: fixed;
  right: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 0;
  text-decoration: none;
  font-size: 24px;
  z-index: 30;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
  cursor: pointer
}

.whatsapp-float {
  bottom: 94px;
  background: #25d366;
  animation: pulseWhatsApp 2s infinite;
  animation-delay: 1s;
}

@keyframes pulseWhatsApp {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.chatbot-float {
  bottom: 160px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: white;
  animation: pulseChatbot 2s infinite;
}

@keyframes pulseChatbot {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(20, 215, 232, 0.5); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(20, 215, 232, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(20, 215, 232, 0); }
}

.top-btn {
  bottom: 28px;
  background: var(--card);
  color: var(--blue);
  border: 1px solid var(--line);
  opacity: 0;
  pointer-events: none;
  transition: .3s
}

.top-btn.show {
  opacity: 1;
  pointer-events: auto
}

.chat-panel {
  position: fixed;
  right: 22px;
  bottom: 228px;
  width: min(360px, calc(100vw - 44px));
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 26px;
  overflow: hidden;
  z-index: 40;
  transform: translateY(20px) scale(.96);
  opacity: 0;
  pointer-events: none;
  transition: .3s;
  backdrop-filter: blur(18px)
}

.chat-panel.open {
  transform: none;
  opacity: 1;
  pointer-events: auto
}

.chat-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: white
}

.chat-head small {
  display: block;
  opacity: .85
}

.chat-head button {
  background: transparent;
  border: 0;
  color: white;
  font-size: 28px;
  cursor: pointer
}

.chat-body {
  display: grid;
  gap: 12px;
  padding: 18px
}

.chat-body label {
  display: grid;
  gap: 6px;
  font-weight: 800
}

.chat-body input,
.chat-body select,
.chat-body textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  background: var(--bg);
  color: var(--text);
  font-family: inherit
}

/* ===== Footer Styles ===== */
.main-footer {
  background: var(--card);
  border-top: 1px solid var(--line);
  padding: 60px 5% 20px;
  margin-top: 60px;
  position: relative;
  z-index: 10;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
  text-align: left;
}

.footer-brand h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--text);
}

.footer-brand p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-socials a:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 20px;
  font-weight: 800;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: 0.2s;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--blue);
  padding-left: 5px;
}

.footer-contact p {
  color: var(--muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: 1s cubic-bezier(.2, .8, .2, 1)
}

.reveal.show {
  opacity: 1;
  transform: none
}

@keyframes tilt {
  50% {
    transform: rotateY(-12deg) rotateX(8deg) translateY(-10px)
  }
}

@keyframes float {
  50% {
    transform: translateY(-18px)
  }
}

@keyframes spin {
  to {
    transform: rotateX(68deg) rotateZ(360deg)
  }
}

@keyframes mar {
  to {
    transform: translateX(-50%)
  }
}

@media(max-width:1100px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .contact-cards {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:820px) {
  .desktop-nav {
    display: none
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 46px
  }

  .hero-visual,
  .bg-grid,
  .bg-orb {
    display: none !important;
  }

  .category-grid,
  .pricing-grid,
  .detail-grid,
  .contact-cards {
    grid-template-columns: 1fr
  }

  .category-card {
    transition: none !important;
  }

  .category-card:hover,
  .category-card.active {
    transform: none !important;
    border: none;
    box-shadow: inset 0 0 0 2px rgba(20, 215, 232, .8);
    background: color-mix(in srgb, var(--card) 90%, var(--blue));
  }

  .feature-list {
    grid-template-columns: 1fr
  }

  .brand span {
    font-size: 20px
  }

  .cursor {
    display: none
  }

  .about-box {
    padding: 28px
  }

  .review-slider {
    padding: 24px 42px;
  }

  .review-stage {
    height: 400px;
  }

  .slide-btn {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  .slide-btn.prev {
    left: 8px;
  }

  .slide-btn.next {
    right: 8px;
  }

  .review-card {
    padding: 24px 16px;
  }

  .review-text {
    font-size: 16px;
  }

  .section {
    padding: 50px 5vw;
  }

  .lead,
  .section-intro {
    font-size: 16px;
  }

  .float-card {
    font-size: 12px;
    padding: 8px 14px;
    width: max-content;
  }
  .c1 { top: 10px; left: 0; right: 0; margin: 0 auto; }
  .c2 { top: 100px; right: -10px; }
  .c3 { bottom: 10px; left: 0; right: 0; margin: 0 auto; }
  .c4 { top: 100px; left: -10px; }
}

/* ===== V3: Enhanced 3D animations, hover effects and package effects ===== */
body::before {
  content: "";
  position: fixed;
  inset: -20%;
  background:
    radial-gradient(circle at 20% 20%, rgba(20, 215, 232, .14), transparent 28%),
    radial-gradient(circle at 80% 30%, rgba(122, 60, 255, .12), transparent 30%),
    radial-gradient(circle at 45% 80%, rgba(0, 103, 255, .10), transparent 34%);
  animation: auroraMove 12s ease-in-out infinite alternate;
  z-index: -5;
  pointer-events: none;
}

@keyframes auroraMove {
  from {
    transform: translate3d(-2%, -1%, 0) rotate(0deg) scale(1)
  }

  to {
    transform: translate3d(2%, 1.5%, 0) rotate(4deg) scale(1.04)
  }
}

.cursor {
  width: 22px;
  height: 22px;
  background: radial-gradient(circle, rgba(20, 215, 232, .25), transparent 60%);
  box-shadow: 0 0 22px rgba(20, 215, 232, .55);
  transition: width .2s, height .2s, background .2s, box-shadow .2s;
}

.cursor.hovering {
  width: 52px;
  height: 52px;
  background: radial-gradient(circle, rgba(0, 103, 255, .18), rgba(122, 60, 255, .10), transparent 65%);
  box-shadow: 0 0 36px rgba(0, 103, 255, .55);
  border-color: rgba(122, 60, 255, .8);
}

.logo-planet {
  transform-origin: center;
  animation: tilt 6s ease-in-out infinite, glowPulse 3.5s ease-in-out infinite;
}

.logo-planet::before,
.logo-planet::after {
  content: "";
  position: absolute;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .34), rgba(20, 215, 232, .10));
  border: 1px solid rgba(20, 215, 232, .22);
  box-shadow: 0 18px 60px rgba(0, 103, 255, .14);
  transform-style: preserve-3d;
}

.logo-planet::before {
  width: 120px;
  height: 82px;
  left: -24px;
  top: 22%;
  transform: translateZ(80px) rotateY(-18deg);
  animation: miniFloat 4.5s ease-in-out infinite;
}

.logo-planet::after {
  width: 92px;
  height: 92px;
  right: -10px;
  bottom: 18%;
  transform: translateZ(100px) rotateY(22deg);
  animation: miniFloat 5.2s ease-in-out infinite reverse;
}

@keyframes glowPulse {
  50% {
    box-shadow: 0 0 80px rgba(20, 215, 232, .22), inset 0 0 60px rgba(0, 103, 255, .10)
  }
}

@keyframes miniFloat {
  50% {
    transform: translateZ(120px) translateY(-18px) rotateY(18deg)
  }
}

.category-card,
.price-card,
.mini-price,
.contact-cards a,
.btn {
  will-change: transform;
}

@media(min-width: 821px) {
  .category-card:hover {
    transform: translateY(-12px) rotateX(8deg) rotateY(-6deg) scale(1.02);
  }
  .category-card:hover span {
    transform: translateY(-6px) scale(1.18) rotate(-6deg);
  }
}

.category-card span {
  filter: drop-shadow(0 10px 18px rgba(0, 103, 255, .22));
  transition: .35s;
}

.price-card {
  transition: transform .45s cubic-bezier(.2, .8, .2, 1), box-shadow .45s, border-color .45s;
  transform-style: preserve-3d;
}

.price-card::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(20, 215, 232, .08), rgba(122, 60, 255, .08));
  opacity: 0;
  transition: .4s;
  pointer-events: none;
}

.price-card:hover {
  transform: translateY(-16px) rotateX(8deg) rotateY(-5deg) scale(1.025);
  box-shadow: 0 38px 100px rgba(0, 103, 255, .22);
  border-color: rgba(20, 215, 232, .55);
}

.price-card:hover::after {
  opacity: 1
}

.price-card h3,
.price-card .price,
.price-card p,
.price-card ul,
.price-card .btn {
  position: relative;
  z-index: 2;
}

.price-card .price {
  text-shadow: 0 10px 30px rgba(0, 103, 255, .18);
}

.price-card:hover .price {
  animation: priceShine 1.4s ease-in-out infinite alternate;
}

@keyframes priceShine {
  from {
    filter: drop-shadow(0 0 0 rgba(20, 215, 232, 0))
  }

  to {
    filter: drop-shadow(0 0 14px rgba(20, 215, 232, .55))
  }
}

.btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 24px 60px rgba(0, 103, 255, .34);
}

.float-card:hover {
  transform: translateY(-20px) rotate(-2deg) scale(1.06);
}

.whatsapp-float {
  background: #25D366;
  color: white;
  font-weight: 900;
  font-family: Arial, sans-serif;
}

.wa-icon {
  width: 32px;
  height: 32px;
  border: 3px solid white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  line-height: 1;
  transform: rotate(105deg);
  font-size: 18px;
}

.chatbot-float {
  font-size: 23px;
}

.whatsapp-float:hover,
.chatbot-float:hover,
.top-btn:hover {
  transform: translateY(-7px) scale(1.08) rotate(-4deg);
}

.chat-panel {
  transform-origin: bottom right;
}

.chat-panel.open {
  animation: chatPop .35s cubic-bezier(.2, .9, .2, 1);
}

@keyframes chatPop {
  0% {
    transform: translateY(24px) scale(.88) rotateX(12deg);
    opacity: 0
  }

  100% {
    transform: none;
    opacity: 1
  }
}

.reveal.show {
  animation: reveal3d 1.2s cubic-bezier(.2, .9, .2, 1) both;
}

@keyframes reveal3d {
  from {
    opacity: 0;
    transform: translateY(80px) translateZ(-100px) rotateX(12deg) rotateY(-6deg) scale(.85)
  }

  to {
    opacity: 1;
    transform: translateZ(0) rotateX(0) rotateY(0) scale(1)
  }
}

/* ===== Floating 3D Shapes ===== */
.floating-shape {
  position: fixed;
  z-index: -2;
  border: 1px solid rgba(20, 215, 232, 0.3);
  box-shadow: inset 0 0 20px rgba(0, 103, 255, 0.1), 0 0 30px rgba(0, 103, 255, 0.15);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(0, 103, 255, 0.05));
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transform-style: preserve-3d;
  pointer-events: none;
  opacity: 0.6;
}

.shape-1 {
  width: 120px;
  height: 120px;
  left: 6%;
  top: 20%;
  animation: floatShape1 18s linear infinite;
}

.shape-2 {
  width: 160px;
  height: 160px;
  right: 8%;
  top: 65%;
  border-radius: 25px;
  border-color: rgba(122, 60, 255, 0.3);
  box-shadow: inset 0 0 20px rgba(122, 60, 255, 0.1), 0 0 30px rgba(122, 60, 255, 0.15);
  animation: floatShape2 22s linear infinite;
}

.shape-3 {
  width: 90px;
  height: 90px;
  left: 15%;
  bottom: 12%;
  border-radius: 50%;
  border-color: rgba(0, 103, 255, 0.4);
  box-shadow: inset 0 0 20px rgba(0, 103, 255, 0.15), 0 0 30px rgba(0, 103, 255, 0.2);
  animation: floatShape3 14s linear infinite;
}

@keyframes floatShape1 {
  0% {
    transform: perspective(800px) rotateX(0) rotateY(0) translateZ(0) translateY(0);
  }

  50% {
    transform: perspective(800px) rotateX(180deg) rotateY(90deg) translateZ(80px) translateY(-40px);
  }

  100% {
    transform: perspective(800px) rotateX(360deg) rotateY(180deg) translateZ(0) translateY(0);
  }
}

@keyframes floatShape2 {
  0% {
    transform: perspective(1000px) rotateX(0) rotateY(0) translateZ(0) translateY(0);
  }

  50% {
    transform: perspective(1000px) rotateX(-180deg) rotateY(-90deg) translateZ(-60px) translateY(60px);
  }

  100% {
    transform: perspective(1000px) rotateX(-360deg) rotateY(-180deg) translateZ(0) translateY(0);
  }
}

@keyframes floatShape3 {
  0% {
    transform: perspective(600px) rotateX(0) rotateY(0) translateZ(0) translateY(0);
  }

  50% {
    transform: perspective(600px) rotateX(90deg) rotateY(180deg) translateZ(40px) translateY(-30px);
  }

  100% {
    transform: perspective(600px) rotateX(180deg) rotateY(360deg) translateZ(0) translateY(0);
  }
}


/* ===== V4: Reviews, slideshow, deeper 3D sections ===== */
.depth-card {
  transform-style: preserve-3d;
  position: relative;
}

.depth-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0, 103, 255, .16), rgba(20, 215, 232, .10), rgba(122, 60, 255, .14));
  opacity: .55;
  z-index: -1;
  transform: translateZ(-1px);
}

.section .glass:not(.review-form-wrap):hover,
.service-detail:hover {
  transform: translateY(-8px) rotateX(2deg);
  box-shadow: 0 38px 100px rgba(0, 103, 255, .18);
}

.reviews {
  background:
    radial-gradient(circle at 10% 20%, rgba(20, 215, 232, .12), transparent 30%),
    radial-gradient(circle at 90% 60%, rgba(122, 60, 255, .10), transparent 28%);
}

.review-stage {
  max-width: 1050px;
  margin: 0 auto 28px;
  height: 380px;
  border-radius: 34px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.review-slider {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 34px 86px;
}

.review-card {
  width: min(720px, 100%);
  border-radius: 30px;
  padding: 34px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--card) 88%, transparent), rgba(20, 215, 232, .08));
  border: 1px solid var(--line);
  box-shadow: 0 28px 80px rgba(0, 103, 255, .14);
  text-align: center;
  animation: reviewIn .65s cubic-bezier(.2, .9, .2, 1);
  transform-style: preserve-3d;
}



.review-stars {
  font-size: 28px;
  letter-spacing: 4px;
  color: #ffc107;
  text-shadow: 0 8px 22px rgba(255, 193, 7, .22);
  margin-bottom: 16px;
}

.review-text {
  font-size: 20px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 20px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}



.review-name {
  font-size: 20px;
  font-weight: 900;
  color: var(--blue);
}

.review-service {
  color: var(--muted);
  font-weight: 800;
  margin-top: 4px;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateZ(50px);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: white;
  font-size: 34px;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 18px 40px rgba(0, 103, 255, .24);
}

.slide-btn:hover {
  transform: translateY(-50%) translateZ(50px) scale(1.1) rotate(-4deg);
}

.slide-btn.prev {
  left: 22px
}

.slide-btn.next {
  right: 22px
}

.review-form-wrap {
  max-width: 1050px;
  margin: 0 auto;
  padding: 30px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 24px;
  align-items: center;
}

.review-form {
  display: grid;
  gap: 12px;
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
}

.review-form-wrap h3 {
  font-size: 30px;
  margin: 6px 0 10px;
}

.review-form-wrap p {
  color: var(--muted);
  line-height: 1.7;
}

@keyframes reviewIn {
  from {
    opacity: 0;
    transform: translateX(60px) rotateY(16deg) scale(.96)
  }

  to {
    opacity: 1;
    transform: none
  }
}

/* more 3D motion across sections */
.hero-copy,
.service-detail,
.about-box,
.contact-cards a {
  transition: transform .45s, box-shadow .45s;
}

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

.service-detail {
  perspective: 1200px;
}

.mini-price:hover {
  transform: translateX(8px) rotateY(-5deg) scale(1.02);
  box-shadow: 0 24px 70px rgba(0, 103, 255, .14);
}

.about-points span:hover {
  transform: translateY(-5px) rotate(-2deg);
  box-shadow: 0 14px 34px rgba(0, 103, 255, .16);
}

.about-points span {
  transition: .35s;
}

.contact-cards a:hover {
  transform: translateY(-10px) rotateX(6deg);
}

@media(max-width:820px) {
  .review-form-wrap {
    grid-template-columns: 1fr;
    transform-style: flat !important;
    perspective: none !important;
    transform: none !important;
  }

  .review-slider {
    padding: 28px 68px
  }

  .review-text {
    font-size: 17px
  }

  .review-form .btn {
    width: 100%;
  }
}


/* ===== V5: Service details without prices + interactive star rating input ===== */
.service-value-cards .mini-price strong {
  display: none
}

.service-value-cards .mini-price b {
  display: block;
  font-size: 22px;
  color: var(--blue);
  margin-bottom: 8px;
}

.service-value-cards .mini-price p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.star-input {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 6px;
  padding: 10px 0;
}

.star-input input {
  display: none;
}

.star-input label {
  font-size: 36px;
  color: rgba(120, 130, 160, .35);
  cursor: pointer;
  transition: transform .2s, color .2s, text-shadow .2s;
  line-height: 1;
}

.star-input label:hover,
.star-input label:hover~label,
.star-input input:checked~label {
  color: #ffc107;
  transform: translateY(-3px) scale(1.08);
  text-shadow: 0 8px 24px rgba(255, 193, 7, .32);
}

.review-help {
  color: var(--muted);
  font-weight: 700;
  margin-top: -8px;
}

.review-stars {
  min-height: 38px;
}

.review-stars:has(+ .review-text) {
  font-weight: 900;
}


/* ===== V6: 4 service detail cards + service category review field ===== */
.service-value-cards {
  grid-template-columns: 1fr 1fr;
}

.service-value-cards .mini-price {
  min-height: 155px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.review-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
}

@media(max-width:820px) {
  .service-value-cards {
    grid-template-columns: 1fr;
  }
}


/* ===== V7: Fill Service Details right side with 6 balanced components ===== */
.service-value-cards {
  grid-template-columns: 1fr 1fr;
  align-content: stretch;
}

.service-value-cards .mini-price {
  min-height: 138px;
  padding: 16px;
}

.service-value-cards .mini-price b {
  font-size: 20px;
}

.service-value-cards .mini-price p {
  font-size: 15px;
  line-height: 1.55;
}

@media(min-width:1100px) {
  .detail-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .service-value-cards {
    height: 100%;
  }
}


/* ===== V8: Stronger 3D hero animation + scroll parallax effects ===== */
.parallax-hero {
  overflow: visible;
  transform-style: preserve-3d;
}

.hero-depth {
  position: absolute;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(0, 103, 255, .08), rgba(20, 215, 232, .10), rgba(122, 60, 255, .08));
  border: 1px solid rgba(20, 215, 232, .12);
  box-shadow: 0 28px 90px rgba(0, 103, 255, .12);
  transform-style: preserve-3d;
  pointer-events: none;
}

.depth-1 {
  width: 78%;
  height: 72%;
  left: 8%;
  top: 11%;
  transform: translateZ(-90px) rotateY(-10deg);
  animation: depthDrift1 8s ease-in-out infinite
}

.depth-2 {
  width: 48%;
  height: 38%;
  right: -4%;
  top: 20%;
  transform: translateZ(60px) rotateY(16deg);
  animation: depthDrift2 7s ease-in-out infinite
}

.depth-3 {
  width: 42%;
  height: 30%;
  left: -3%;
  bottom: 10%;
  transform: translateZ(90px) rotateX(12deg);
  animation: depthDrift3 6.5s ease-in-out infinite
}

@keyframes depthDrift1 {
  50% {
    transform: translateZ(-60px) translateY(-18px) rotateY(8deg) rotateX(4deg)
  }
}

@keyframes depthDrift2 {
  50% {
    transform: translateZ(100px) translateY(16px) rotateY(-10deg) rotateZ(3deg)
  }
}

@keyframes depthDrift3 {
  50% {
    transform: translateZ(130px) translateX(18px) rotateX(-8deg) rotateZ(-3deg)
  }
}

.logo-planet {
  transition: transform .15s linear;
}

.logo-planet img {
  animation: logoBreath 4s ease-in-out infinite;
}

@keyframes logoBreath {
  50% {
    transform: scale(1.045) translateZ(40px);
    filter: drop-shadow(0 42px 42px rgba(0, 54, 140, .34))
  }
}

.r3 {
  inset: 5%;
  border-color: rgba(0, 103, 255, .22);
  animation-duration: 18s;
  transform: rotateX(74deg) rotateY(18deg);
}

.spark {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff, var(--cyan), transparent 70%);
  box-shadow: 0 0 22px rgba(20, 215, 232, .8);
  animation: sparkOrbit 7s linear infinite;
}

.s1 {
  left: 12%;
  top: 26%;
  animation-delay: 0s
}

.s2 {
  right: 18%;
  top: 18%;
  animation-delay: 1.4s
}

.s3 {
  right: 22%;
  bottom: 18%;
  animation-delay: 2.8s
}

.s4 {
  left: 22%;
  bottom: 22%;
  animation-delay: 4.2s
}

@keyframes sparkOrbit {
  0% {
    transform: translate3d(0, 0, 80px) scale(.7);
    opacity: .35
  }

  35% {
    transform: translate3d(36px, -26px, 140px) scale(1.25);
    opacity: 1
  }

  70% {
    transform: translate3d(-24px, 34px, 100px) scale(.9);
    opacity: .65
  }

  100% {
    transform: translate3d(0, 0, 80px) scale(.7);
    opacity: .35
  }
}

.c4 {
  right: 6%;
  bottom: 42px;
  animation-delay: 2s;
  background: linear-gradient(135deg, var(--cyan), var(--blue))
}

.c5 {
  left: 18%;
  top: 22px;
  animation-delay: 2.6s;
  background: linear-gradient(135deg, var(--blue), var(--purple))
}

.float-card {
  transition: transform .2s ease, box-shadow .3s ease;
}

.parallax-hero:hover .float-card {
  box-shadow: 0 28px 80px rgba(0, 103, 255, .28);
}

/* scroll movement classes controlled by JS */
.parallax-hero.scrolled .depth-1 {
  transform: translateZ(-40px) translateY(-28px) rotateY(10deg)
}

.parallax-hero.scrolled .depth-2 {
  transform: translateZ(130px) translateY(22px) rotateY(-14deg)
}

.parallax-hero.scrolled .depth-3 {
  transform: translateZ(150px) translateX(26px) rotateX(-10deg)
}

.parallax-hero.scrolled .logo-planet {
  filter: drop-shadow(0 36px 60px rgba(0, 103, 255, .22))
}

/* extra section scroll depth */
.section.reveal.show {
  transform-style: preserve-3d;
}

.section.reveal.show h2 {
  animation: titleLift .9s ease both;
}

@keyframes titleLift {
  from {
    transform: translateY(22px) translateZ(-40px);
    opacity: .4
  }

  to {
    transform: none;
    opacity: 1
  }
}

@media(max-width:820px) {

  .c4,
  .c5 {
    display: none
  }

  .hero-depth {
    opacity: .55
  }
}


/* ===== V9: Make hero logo clear and keep 3D effects behind it ===== */
.hero-visual {
  isolation: isolate;
}

.hero-depth {
  z-index: 0;
  opacity: .42;
  filter: blur(.2px);
}

.logo-planet {
  z-index: 5;
  background: transparent !important;
  box-shadow: none !important;
}

.logo-planet img {
  position: relative;
  z-index: 8;
  opacity: 1 !important;
  filter: drop-shadow(0 32px 32px rgba(0, 54, 140, .26)) !important;
  mix-blend-mode: normal !important;
}

.logo-planet::before,
.logo-planet::after {
  z-index: 1;
  opacity: .28;
  filter: blur(.4px);
}

.logo-planet .ring,
.logo-planet .spark {
  z-index: 2;
  opacity: .55;
}

.float-card {
  z-index: 9;
}

.depth-1 {
  opacity: .26;
  transform: translateZ(-140px) rotateY(-10deg) scale(.94);
}

.depth-2,
.depth-3 {
  opacity: .32;
}

/* Prevent blue overlay layers from covering the logo */
.parallax-hero.scrolled .depth-1 {
  opacity: .22;
}

.parallax-hero.scrolled .depth-2,
.parallax-hero.scrolled .depth-3 {
  opacity: .28;
}

/* Make logo slightly brighter and sharper */
.logo-planet::after {
  display: none;
}

.logo-planet::before {
  opacity: .18;
}

@media(max-width:820px) {
  .hero-depth {
    opacity: .25;
  }

  .logo-planet img {
    filter: drop-shadow(0 22px 24px rgba(0, 54, 140, .22)) !important;
  }
}


/* ===== V10: Added soft bottom background bubble layer behind hero logo ===== */
.parallax-hero::after {
  content: "";
  position: absolute;
  left: 7%;
  right: 4%;
  bottom: 4%;
  height: 44%;
  border-radius: 55% 45% 48% 52% / 58% 50% 50% 42%;
  background:
    radial-gradient(circle at 35% 45%, rgba(20, 215, 232, .18), transparent 38%),
    linear-gradient(135deg, rgba(0, 103, 255, .13), rgba(20, 215, 232, .10), rgba(122, 60, 255, .08));
  filter: blur(.2px);
  opacity: .62;
  z-index: 1;
  pointer-events: none;
  transform: translateZ(-75px) rotate(-1deg);
  animation: bottomBubbleFloat 8s ease-in-out infinite alternate;
}

@keyframes bottomBubbleFloat {
  from {
    transform: translateZ(-75px) translateY(0) scale(1) rotate(-1deg);
  }

  to {
    transform: translateZ(-75px) translateY(-10px) scale(1.025) rotate(1deg);
  }
}

/* Keep logo and cards above the new bubble */
.logo-planet {
  z-index: 5;
}

.float-card {
  z-index: 9;
}

.hero-depth {
  z-index: 0;
}


/* ===== V11: Glass-like floating box animations in hero section ===== */
.glass-orb {
  position: absolute;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .30), rgba(255, 255, 255, .06)),
    radial-gradient(circle at 25% 20%, rgba(20, 215, 232, .18), transparent 42%);
  border: 1px solid rgba(255, 255, 255, .28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .42),
    inset 0 -20px 40px rgba(0, 103, 255, .06),
    0 28px 80px rgba(0, 54, 140, .14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  pointer-events: none;
  z-index: 3;
  transform-style: preserve-3d;
  opacity: .62;
}

.gbox-1 {
  width: 190px;
  height: 120px;
  left: 2.5%;
  top: 17%;
  transform: translateZ(65px) rotateX(8deg) rotateY(-14deg);
  animation: glassFloatOne 7.5s ease-in-out infinite alternate;
}

.gbox-2 {
  width: 145px;
  height: 145px;
  right: -1%;
  top: 53%;
  border-radius: 38px;
  transform: translateZ(85px) rotateX(-8deg) rotateY(18deg);
  animation: glassFloatTwo 8.5s ease-in-out infinite alternate;
}

.gbox-3 {
  width: 120px;
  height: 92px;
  left: 10%;
  bottom: 8%;
  opacity: .34;
  transform: translateZ(45px) rotateX(10deg) rotateY(10deg);
  animation: glassFloatThree 9s ease-in-out infinite alternate;
}


@keyframes glassFloatOne {
  0% {
    transform: translateZ(65px) translate3d(0, 0, 0) rotateX(8deg) rotateY(-14deg)
  }

  100% {
    transform: translateZ(105px) translate3d(18px, -18px, 0) rotateX(-4deg) rotateY(12deg)
  }
}

@keyframes glassFloatTwo {
  0% {
    transform: translateZ(85px) translate3d(0, 0, 0) rotateX(-8deg) rotateY(18deg)
  }

  100% {
    transform: translateZ(120px) translate3d(-20px, 16px, 0) rotateX(7deg) rotateY(-12deg)
  }
}

@keyframes glassFloatThree {
  0% {
    transform: translateZ(45px) translate3d(0, 0, 0) rotateX(10deg) rotateY(10deg)
  }

  100% {
    transform: translateZ(90px) translate3d(14px, -12px, 0) rotateX(-8deg) rotateY(-10deg)
  }
}


/* Keep logo and text cards clearly above the glass boxes */
.logo-planet {
  z-index: 6;
}

.float-card {
  z-index: 10;
}

/* Make glass boxes responsive and non-intrusive */
@media(max-width:820px) {
  .gbox-3 {
    display: none;
  }

  .gbox-1 {
    width: 130px;
    height: 86px;
    left: 0;
    top: 20%;
  }

  .gbox-2 {
    width: 105px;
    height: 105px;
    right: -10px;
  }
}

.whatsapp-float,
.chatbot-float {
  overflow: hidden;
}

.whatsapp-float img,
.chatbot-float img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
  pointer-events: none;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .18));
}

.chatbot-float img {
  width: 32px;
  height: 32px;
}

/* remove old generated phone icon style if it still exists */

/* ===== V13: Scroll Progress, Trusted By Marquee, FAQ, Magnetic Effects ===== */
.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  z-index: 1001;
  pointer-events: none;
}

.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--purple));
  box-shadow: 0 0 10px rgba(20, 215, 232, 0.8);
  border-radius: 0 2px 2px 0;
  transition: width 0.1s ease-out;
}

.package-tabs-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.package-tabs {
  position: relative;
  display: inline-flex;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px;
  box-shadow: 0 14px 40px rgba(0, 103, 255, 0.12);
}

.pkg-tab {
  position: relative;
  z-index: 2;
  background: transparent;
  border: none;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  cursor: pointer;
  transition: color 0.3s;
}

.pkg-tab.active {
  color: white;
}

.tab-indicator {
  position: absolute;
  top: 6px;
  left: 6px;
  height: calc(100% - 12px);
  width: 90px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 999px;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@media(max-width:820px) {
  .package-tabs {
    flex-wrap: wrap;
    border-radius: 20px;
    justify-content: center;
  }

  .tab-indicator {
    display: none;
  }

  .pkg-tab.active {
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    border-radius: 999px;
  }
}

.faq {
  max-width: 900px;
  margin: 0 auto;
}

.faq-list {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 103, 255, 0.15);
}

.faq-item summary {
  padding: 24px;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 28px;
  font-weight: 400;
  color: var(--blue);
  transition: transform 0.3s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--cyan);
}

.faq-content {
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 16px;
  animation: faqOpen 0.4s ease-out;
}

@keyframes faqOpen {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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

.magnetic {
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.stagger-reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.stagger-reveal.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.wa-icon {
  display: none !important;
}

/* Center single package cards like ERP and POS */
/* Center and slightly widen single package cards like ERP and POS */
.pricing-grid:has(.price-card:only-child) {
  grid-template-columns: min(100%, 520px);
  justify-content: center;
}

/* Animated AuraSync gradient text */
.ai-gradient-text {
  background: linear-gradient(90deg,
      #07145f,
      #0067ff,
      #14d7e8,
      #7a3cff,
      #0067ff,
      #14d7e8,
      #07145f);
  background-size: 400% 400%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: auraGradientShift 4s ease-in-out infinite;
  filter: drop-shadow(0 0 14px rgba(20, 215, 232, 0.25));
}

@keyframes auraGradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* ===== Minigame Styles (Aura Shooter) ===== */
.shooter-wrapper {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.shooter-container {
  position: relative;
  width: 100%;
  height: 400px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: crosshair;
}
#shooterCanvas {
  display: block;
  width: 100%;
  height: 100%;
}
.game-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 24px;
  border-radius: 20px;
  margin-bottom: 24px;
  font-weight: 800;
  color: var(--blue);
}
.game-stats b {
  font-size: 20px;
  color: var(--text);
}
.game-overlay {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
  z-index: 10;
}
.game-overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.game-overlay h3 {
  font-size: 32px;
  margin: 0;
  color: var(--blue);
}
.game-overlay p {
  color: var(--muted);
  margin: 0;
}
@media (max-width: 650px) {
  .shooter-container { height: 300px; }
}
/* Package Section Upgrades */
.price-animate {
  animation: priceShinePulse 2s infinite ease-in-out;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: 12px;
}

@keyframes priceShinePulse {
  0% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(20, 215, 232, 0)); }
  50% { transform: scale(1.02); filter: drop-shadow(0 0 12px rgba(20, 215, 232, 0.4)); }
  100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(20, 215, 232, 0)); }
}

.price-desc {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.toggle-details-btn {
  display: none;
}

@media(max-width: 820px) {
  .price-details-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, opacity 0.4s;
    opacity: 0;
  }
  .price-details-container.expanded {
    max-height: 800px;
    opacity: 1;
    margin-bottom: 20px;
  }
  .toggle-details-btn {
    display: block;
    width: 100%;
    margin-bottom: 16px;
    background: color-mix(in srgb, var(--blue) 15%, transparent);
    border: 1px solid var(--blue);
    color: var(--blue);
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
    z-index: 2;
    position: relative;
  }
  .toggle-details-btn:hover {
    background: var(--blue);
    color: white;
  }
}

/* Pricing Section Enhancements */
.show-more-btn {
  display: none;
  cursor: pointer;
}

@media (max-width: 820px) {
  .price-card .price-desc,
  .price-card .price-features {
    display: none;
  }
  .price-card .show-more-btn {
    display: inline-flex;
    width: 100%;
    justify-content: center;
  }
  .price-card .get-started-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Price Continuous Animation */
.price-card .price {
  animation: pricePulse 2s infinite alternate ease-in-out;
}

@keyframes pricePulse {
  0% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(20, 215, 232, 0)); }
  100% { transform: scale(1.05); filter: drop-shadow(0 0 14px rgba(20, 215, 232, 0.4)); }
}

/* Modal Styling */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  width: 90%;
  max-width: 500px;
  padding: 32px;
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow);
}

.modal-overlay.open .modal-content {
  transform: translateY(0) scale(1);
}

.close-modal {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: var(--text);
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
}

.close-modal:hover {
  color: var(--blue);
  transform: rotate(90deg);
}
