.sc-card {
  background: #0b1220;
  border-radius: 16px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}


.sc-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: linear-gradient(to bottom, #00c6ff, #0072ff);
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 3px 0 0 3px;
}

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


.sc-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  opacity: 0;
  filter: blur(40px);
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.sc-card:hover .sc-glow {
  opacity: 0.18;
}

.sc-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 198, 255, 0.35);
  box-shadow: 0 20px 50px rgba(0, 150, 255, 0.14);
  background: #0d1526;
}


.sc-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  z-index: 2;
}

.sc-badge.popular {
  background: rgba(59, 130, 246, 0.18);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.sc-badge.recommended {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.sc-badge.it {
  background: rgba(99, 102, 241, 0.15);
  color: #a5b4fc;
  border: 1px solid rgba(99, 102, 241, 0.3);
}


.sc-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.sc-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.sc-card:hover .sc-icon {
  transform: rotate(8deg) scale(1.12);
}

.sc-iso-label {
  font-size: 11px;
  font-family: monospace;
  color: var(--brand-primary);
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: 2px;
  opacity: 0.85;
}

.sc-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  line-height: 1.3;
}


.sc-desc {
  font-size: 0.8rem;
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 0.85rem;
}


.sc-points {
  list-style: none;
  padding: 0;
  margin: 0 0 0.85rem;
}

.sc-points li {
  font-size: 0.78rem;
  color: #d1d5db;
  padding: 3px 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.sc-points li::before {
  content: none;
}


.sc-quick-info {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sc-quick-info span {
  font-size: 0.7rem;
  color: var(--slate-400);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  padding: 2px 8px;
  white-space: nowrap;
}


.sc-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #00c6ff;
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s;
  width: fit-content;
}

.sc-btn span {
  transition: transform 0.2s ease;
}

.sc-btn:hover {
  color: #60d5ff;
}

.sc-btn:hover span {
  transform: translateX(4px);
}


.sc-custom-card {
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.13);
}

.sc-custom-card:hover {
  border-style: dashed;
  border-color: rgba(0, 198, 255, 0.3);
}






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

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

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




#cursor-glow {
  position: fixed;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: opacity 0.3s;
}


.floating-tags {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.ftag {
  display: none;
}



@keyframes floatTag {
  0% {
    transform: translateY(110vh) rotate(-5deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-10vh) rotate(5deg);
    opacity: 0;
  }
}


.glow-dot {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: dotFloat ease-in-out infinite;
}

@keyframes dotFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.4;
  }

  50% {
    transform: translateY(-20px) scale(1.1);
    opacity: 0.7;
  }
}


.glass-card {
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.glass-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 60px rgba(0, 150, 255, 0.15), 0 0 0 1px rgba(59, 130, 246, 0.2) !important;
  border-color: rgba(59, 130, 246, 0.35) !important;
  background: rgba(255, 255, 255, 0.07) !important;
}


.btn-brand {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease !important;
}

.btn-brand::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-brand:hover::after {
  opacity: 1;
}

.btn-brand:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.45) !important;
}

.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transform: scale(0);
  animation: rippleAnim 0.6s linear forwards;
  pointer-events: none;
}

@keyframes rippleAnim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}


.trust-icon-wrap,
.benefit-icon-wrap,
.industry-icon,
.service-icon-wrap,
.val-icon-wrap {
  transition: all 0.3s ease !important;
}

.trust-item:hover .trust-icon-wrap,
.glass-card:hover .benefit-icon-wrap,
.industry-item:hover .industry-icon {
  transform: rotate(10deg) scale(1.15) !important;
}


.stat-card {
  transition: all 0.3s ease !important;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.06), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.stat-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(59, 130, 246, 0.3) !important;
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15) !important;
}

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


.counter-num {
  font-variant-numeric: tabular-nums;
  display: inline-block;
}


.hero-social-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.25rem;
  align-items: center;
}

.hero-proof-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--slate-400);
}

.hero-proof-item .proof-icon {
  color: var(--brand-gold);
  font-size: 0.85rem;
}

.hero-proof-item strong {
  color: var(--slate-300);
  font-weight: 600;
}

.hero-rating-stars {
  display: inline-flex;
  gap: 1px;
  color: var(--brand-gold);
}


.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.from-left {
  transform: translateX(-40px);
}

.reveal.from-right {
  transform: translateX(40px);
}

.reveal.zoom-in {
  transform: scale(0.92);
}

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

.reveal.delay-1 {
  transition-delay: 0.1s;
}

.reveal.delay-2 {
  transition-delay: 0.2s;
}

.reveal.delay-3 {
  transition-delay: 0.3s;
}

.reveal.delay-4 {
  transition-delay: 0.4s;
}


.timeline-card {
  transition: all 0.35s ease !important;
}

.timeline-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.12) !important;
}

.timeline-node {
  transition: all 0.3s ease !important;
}

.timeline-node:hover {
  transform: scale(1.18) !important;
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.5) !important;
}


#dashboard-section {
  padding: 5rem 0;
  background: rgba(2, 6, 23, 0.5);
  position: relative;
  overflow: hidden;
}

#dashboard-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.dashboard-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.dashboard-card:hover {
  border-color: rgba(59, 130, 246, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(59, 130, 246, 0.1);
}

.dashboard-card-title {
  font-size: 0.75rem;
  color: var(--slate-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.progress-bar-track {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  margin-bottom: 0.35rem;
}

.progress-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.progress-bar-fill.animate {
  transform: scaleX(1);
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--slate-400);
  margin-bottom: 0.75rem;
}

.audit-status-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.8rem;
  color: var(--slate-300);
}

.audit-status-item:last-child {
  border-bottom: none;
}

.audit-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.audit-dot.done {
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
}

.audit-dot.active {
  background: var(--brand-primary);
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.6);
  animation: pulse 2s infinite;
}

.audit-dot.pending {
  background: rgba(255, 255, 255, 0.15);
}

.cert-timeline-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.1rem;
  align-items: flex-start;
}

.cert-tl-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.25);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
}

.cert-tl-icon.done {
  background: rgba(74, 222, 128, 0.12);
  border-color: rgba(74, 222, 128, 0.3);
  color: #4ade80;
}

.cert-tl-label {
  font-size: 0.8rem;
  color: var(--slate-300);
  font-weight: 500;
}

.cert-tl-date {
  font-size: 0.7rem;
  color: var(--slate-500);
}


#pricing {
  padding: 5rem 0;
  background: rgba(15, 23, 42, 0.3);
}

.pricing-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 1.25rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
  opacity: 0;
  transition: opacity 0.3s;
}

.pricing-card:hover::before,
.pricing-card.featured::before {
  opacity: 1;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 24px 64px rgba(0, 150, 255, 0.15);
}

.pricing-card.featured {
  border-color: rgba(59, 130, 246, 0.4);
  background: rgba(59, 130, 246, 0.07);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
}

.pricing-badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
  color: white;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-name {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pricing-price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate-400);
}

.pricing-desc {
  font-size: 0.8rem;
  color: var(--slate-400);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  margin-bottom: 1.5rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.825rem;
  color: var(--slate-300);
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(20, 184, 166, 0.15);
  color: var(--brand-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.6rem;
}


#case-study {
  padding: 5rem 0;
  background: rgba(2, 6, 23, 0.6);
}

.before-after-card {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 767px) {
  .before-after-card {
    grid-template-columns: 1fr;
  }
}

.ba-panel {
  padding: 2.5rem;
  position: relative;
}

.ba-before {
  background: rgba(239, 68, 68, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.ba-after {
  background: rgba(74, 222, 128, 0.04);
}

.ba-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.ba-before .ba-label {
  background: rgba(239, 68, 68, 0.12);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.ba-after .ba-label {
  background: rgba(74, 222, 128, 0.12);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.2);
}

.ba-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
  font-size: 0.85rem;
  color: var(--slate-300);
}

.ba-dot-bad {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f87171;
  flex-shrink: 0;
  margin-top: 5px;
}

.ba-dot-good {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  margin-top: 5px;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.5);
}

.ba-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media (max-width: 767px) {
  .ba-before {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
}








@keyframes chatOpen {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(16px);
  }

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












#sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(2, 6, 23, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(59, 130, 246, 0.2);
  padding: 0.85rem 1rem;
}

@media (max-width: 767px) {
  #sticky-cta {
    display: block;
  }

  body {
    padding-bottom: 72px;
  }
}

#sticky-cta .btn-brand {
  width: 100%;
  font-size: 0.9rem;
  padding: 0.75rem;
}

#sticky-cta .urgency-text {
  text-align: center;
  font-size: 0.67rem;
  color: var(--brand-gold);
  margin-bottom: 0.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: pulse 2s infinite;
}


.why-stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.why-stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.07), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.why-stat-card:hover {
  transform: translateY(-10px);
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15);
}

.why-stat-card:hover::before {
  opacity: 1;
}

.why-stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--brand-primary);
  transition: all 0.3s ease;
}

.why-stat-card:hover .why-stat-icon {
  background: var(--brand-primary);
  color: white;
  transform: rotate(10deg) scale(1.1);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

.why-stat-num {
  font-size: 2rem;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.why-stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-300);
  margin-bottom: 0.25rem;
}

.why-stat-desc {
  font-size: 0.75rem;
  color: var(--slate-500);
}


.urgency-banner {
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.1), rgba(239, 68, 68, 0.08), rgba(245, 158, 11, 0.1));
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 0.75rem;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: #fde68a;
  font-weight: 500;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  text-align: center;
}

.urgency-banner .dot-red {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f87171;
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}


.gradient-heading {
  background: linear-gradient(to right, #fff, #cbd5e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-heading-accent {
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.logo-box {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent)) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}


@media (max-width: 575px) {
  .glass-card:hover {
    transform: translateY(-4px) !important;
  }

  .pricing-card.featured {
    transform: translateY(0);
  }

  .before-after-card {
    grid-template-columns: 1fr;
  }


}


#scrollTopBtn {
  position: fixed;
  bottom: 90px;
  left: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--slate-300);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

#scrollTopBtn.visible {
  opacity: 1;
  pointer-events: auto;
}

#scrollTopBtn:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.35);
}


.testimonial-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 16px 40px rgba(59, 130, 246, 0.12) !important;
}


.industry-item {
  cursor: pointer;
  transition: all 0.3s ease !important;
}

.industry-item:hover {
  transform: translateY(-6px) !important;
  background: rgba(59, 130, 246, 0.1) !important;
}