/* Enhanced visuals for the Company Setup section */
.company-setup-section .section-box {
  position: relative;
  background: linear-gradient(145deg, rgba(30,40,53,0.95), rgba(25,30,40,0.95));
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-setup-section .section-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(10, 21, 183, 0.35);
}

.company-setup-section .section-divider {
  text-align: center;
  margin-top: 2rem;
  letter-spacing: 1px;
  font-size: 1rem;
  color: #a5b4fc;
  opacity: 0.9;
}

.company-setup-section .section-divider::before,
.company-setup-section .section-divider::after {
  content: "";
  display: inline-block;
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, #3fdbff, transparent);
  margin: 0 12px;
  vertical-align: middle;
}
.hero-section {
  position: relative;
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-darker));
  color: var(--text);
  padding: 6rem 1.5rem;
  text-align: center;
  overflow: hidden;
}

/* Decorative overlay shapes */
.hero-overlay::before,
.hero-overlay::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  z-index: 0;
}

@keyframes float {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes drift {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(15px, -15px) rotate(10deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

.hero-overlay::before {
  width: 400px;
  height: 400px;
  background: var(--accent);
  top: -100px;
  left: -100px;
  animation: float 8s ease-in-out infinite;
}

.hero-overlay::after {
  width: 500px;
  height: 500px;
  background: var(--highlight);
  bottom: -150px;
  right: -150px;
  animation: drift 12s ease-in-out infinite;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0;                  /* start hidden */
  animation: fadeUp 0.5s ease-out forwards;
  animation-delay: 0.3s;       /* slight delay for smoother load */
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-title span {
  color: var(--accent);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  background: var(--accent);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

.hero-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}
.hero-pricing {
  margin-top: 1.5rem;
  background: rgba(30, 40, 53, 0.9);
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  display: inline-block;
  text-align: center;
  box-shadow: 0 0 20px rgba(10, 21, 183, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-pricing:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(10, 21, 183, 0.35);
}

.hero-pricing-amount {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.hero-pricing-amount .currency {
  font-size: 1.25rem;
  color: #3fdbff;
  vertical-align: top;
}

.hero-pricing-amount .onetime {
  display: block;
  font-size: 0.85rem;
  color: #a5b4fc;
  margin-top: 0.25rem;
}

.hero-pricing-note {
  font-size: 0.9rem;
  color: #e5e7eb;
  margin-bottom: 1rem;
}

.hero-pricing-note .portal-price {
  color: #3fdbff;
  font-weight: 600;
}

.hero-pricing-btn {
  display: inline-block;
  background: linear-gradient(90deg, #3fdbff, #729dff);
  color: #1a1f2a;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-pricing-btn:hover {
  background: linear-gradient(90deg, #5be5ff, #84a9ff);
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(63, 219, 255, 0.35);
}
/* Main Buy Section */
.buy-section {
  max-width: 950px;
  margin: 4rem auto;
  padding: 0 1rem;
}

.buy-inner {
  background: linear-gradient(145deg, rgba(17,24,39,0.95), rgba(14,15,15,0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  padding: 2.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
  box-shadow: 0 0 35px rgba(50, 192, 255, 0.15);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* Left Side */
.buy-left {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex: 1;
}

.buy-text {
  display: flex;
  flex-direction: column;
}

/* Tagline */
.buy-tagline {
  font-size: 1.15rem;
  font-weight: 600;
  color: #d9be7d;
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

/* Subtitle */
.buy-subtitle {
  color: #54fbdc;
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Prominent Buy Note */
.buy-note {
  display: inline-block;
  background: rgba(50,192,255,0.05);
  border-left: 4px solid var(--accent-3);
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
  transition: all 0.3s ease;
}

.buy-note a {
  color: var(--accent-3);
  font-weight: 600;
  text-decoration: none;
}

.buy-note a:hover {
  text-decoration: underline;
}

.buy-note .divider {
  margin: 0 0.4rem;
  color: rgba(255,255,255,0.4);
}

/* Right Side: Price + Button */
.buy-right {
  text-align: right;
  flex-shrink: 0;
}

.price-tag {
  font-size: 2.6rem;
  font-weight: 700;
  color: #94b8ff;
}

.currency {
  font-size: 1.3rem;
  vertical-align: super;
  color: var(--accent-2);
}

.price-type {
  display: block;
  font-size: 0.9rem;
  color: #ce8772;
  margin-top: 0.25rem;
}

.buy-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  gap: 0.6rem;
  background: linear-gradient(135deg, #32c0ff 0%, #2d9ea4 100%);
  color: #0e0f0f;
  font-weight: 700;
  padding: 1rem 1.4rem;
  font-size: 1rem;
  border-radius: 1rem;
  border: 2px solid rgba(50,192,255,0.5);
  text-decoration: none;
  transition: all 0.3s ease;
  transform: translateY(0);
}

.buy-btn:hover {
  background: linear-gradient(135deg, #2d9ea4 0%, #32c0ff 100%);
  box-shadow: 0 8px 25px rgba(50,192,255,0.55);
  transform: translateY(-2px);
}

.buy-btn .shopping-cart-icon {
  width: 25px;
  height: 25px;
  filter: drop-shadow(0 0 2px rgba(0,0,0,0.2));
}


/* Responsive */
@media (max-width: 720px) {
  .buy-inner {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .buy-left {
    flex-direction: column;
    align-items: center;
  }

  .buy-right {
    text-align: center;
  }
  .buy-section {
  padding: 0;
  }  
}


