
/* Page variables scoping */
.sc-page-wrapper {
  --sc-primary: #2563eb;
  --sc-accent: #10b981;
  --sc-dark: #0f172a;
  --sc-muted: #64748b;
  --sc-light-bg: #f8fafc;
  --sc-border: rgba(148, 163, 184, 0.2);
  --sc-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.08);
  --sc-shadow-hover: 0 30px 60px -15px rgba(37, 99, 235, 0.15);
  --sc-transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: radial-gradient(circle at top left, #eef2ff, #f8fafc 60%);
  color: var(--text);
  overflow: hidden;
  font-family: "Inter", sans-serif;
}

.sc-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.sc-section {
  padding: 6rem 0;
  position: relative;
}

.sc-section-dark {
  background: #0f172a;
  color: #f8fafc;
}

.sc-section-dark .section__eyebrow {
  color: #60a5fa;
}

.sc-section-dark .section__title {
  color: #ffffff;
}

.sc-section-dark .section__subtitle {
  color: #94a3b8;
}

.text-center {
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal.delay-100 { transition-delay: 100ms; }
.reveal.delay-200 { transition-delay: 200ms; }
.reveal.delay-300 { transition-delay: 300ms; }
.reveal.delay-400 { transition-delay: 400ms; }

.sc-section-head {
  max-width: 750px;
  margin: 0 auto 4rem;
  text-align: center;
}

.section__eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sc-primary);
  margin-bottom: 0.75rem;
  display: inline-block;
}

.section__title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: var(--lh-title);
  color: var(--sc-dark);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.section__subtitle {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: var(--sc-muted);
  line-height: 1.6;
}

/*1. HERO SECTION */
.sc-hero {
  padding: 6rem 0 7rem;
  position: relative;
  overflow: hidden;
}

.sc-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, rgba(37, 99, 235, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

.sc-hero::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

.sc-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.sc-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sc-primary);
  margin-bottom: 1.5rem;
}

.sc-hero__badge i {
  color: var(--sc-accent);
}

.sc-hero__title {
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--sc-dark);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

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

.sc-hero__subtitle {
  font-size: clamp(1.05rem, 1.25vw, 1.25rem);
  color: var(--sc-muted);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.sc-hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.sc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--sc-transition);
  cursor: pointer;
}

.sc-btn--primary {
  background: var(--sc-primary);
  color: #ffffff;
  box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.3);
}

.sc-btn--primary:hover {
  background: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(37, 99, 235, 0.45);
}

.sc-btn--secondary {
  background: #ffffff;
  color: var(--sc-dark);
  border: 1px solid var(--sc-border);
}

.sc-btn--secondary:hover {
  background: var(--sc-light-bg);
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.3);
}


.sc-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sc-hero__glow {
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, rgba(255,255,255,0) 65%);
  filter: blur(40px);
  z-index: 0;
}

.sc-hero__card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  padding: 2.25rem;
  box-shadow: var(--sc-shadow);
  width: 100%;
  max-width: 440px;
  transition: var(--sc-transition);
}

.sc-hero__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sc-shadow-hover);
}

.sc-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--sc-border);
  padding-bottom: 1.25rem;
}

.sc-card__title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--sc-dark);
}

.sc-card__status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--sc-accent);
  text-transform: uppercase;
}

.sc-card__status .dot {
  width: 6px;
  height: 6px;
  background: var(--sc-accent);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

.sc-card__list {
  display: grid;
  gap: 1.25rem;
}

.sc-card-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
}

.sc-card-item__info {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.sc-card-item__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sc-primary);
  font-size: 1rem;
  transition: var(--sc-transition);
}

.sc-card-item:hover .sc-card-item__icon {
  background: var(--sc-primary);
  color: #ffffff;
}

.sc-card-item__label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--sc-dark);
}

.sc-card-item__badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
}

.sc-badge--active {
  background: rgba(16, 185, 129, 0.1);
  color: var(--sc-accent);
}

.sc-badge--warning {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

/* 2. WHY SAFETY COMPLIANCE MATTERS */
.sc-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.sc-why-card {
  background: #ffffff;
  border: 1px solid var(--sc-border);
  border-radius: 20px;
  padding: 2.5rem 2.25rem;
  box-shadow: var(--sc-shadow);
  transition: var(--sc-transition);
  position: relative;
  overflow: hidden;
}

.sc-why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--sc-primary);
  opacity: 0;
  transition: var(--sc-transition);
}

.sc-why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sc-shadow-hover);
  border-color: rgba(37, 99, 235, 0.15);
}

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

.sc-why-icon {
  width: 56px;
  height: 56px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sc-primary);
  font-size: 1.5rem;
  margin-bottom: 1.75rem;
  transition: var(--sc-transition);
}

.sc-why-card:hover .sc-why-icon {
  background: var(--sc-primary);
  color: #ffffff;
  transform: scale(1.05);
}

.sc-why-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--sc-dark);
  margin-bottom: 1rem;
}

.sc-why-card p {
  font-size: 0.95rem;
  color: var(--sc-muted);
  line-height: 1.6;
}

/* 3. SERVICES SECTION */
.sc-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2rem;
}

.sc-service-card {
  background: #ffffff;
  border: 1px solid var(--sc-border);
  border-radius: 20px;
  padding: 2.25rem;
  box-shadow: var(--sc-shadow);
  transition: var(--sc-transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.sc-service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sc-shadow-hover);
  border-color: rgba(16, 185, 129, 0.2);
}

.sc-service-head {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.sc-service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sc-accent);
  font-size: 1.25rem;
  transition: var(--sc-transition);
  flex-shrink: 0;
}

.sc-service-card:hover .sc-service-icon {
  background: var(--sc-accent);
  color: #ffffff;
}

.sc-service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--sc-dark);
  line-height: 1.3;
}

.sc-service-desc {
  font-size: 0.92rem;
  color: var(--sc-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.sc-service-list {
  list-style: none;
  padding: 0;
  margin: auto 0 0 0;
  display: grid;
  gap: 0.75rem;
  border-top: 1px solid var(--sc-border);
  padding-top: 1.25rem;
}

.sc-service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--sc-dark);
  font-weight: 500;
  line-height: 1.4;
}

.sc-service-list li i {
  color: var(--sc-accent);
  font-size: 0.9rem;
  margin-top: 0.15rem;
}

/*4. ACTIVE MONITORING RADAR / DASHBOARD*/
.sc-monitor-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.sc-monitor-text h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.sc-monitor-text p {
  color: #94a3b8;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.sc-monitor-tags {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.sc-monitor-tag-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.sc-monitor-tag-item i {
  color: #60a5fa;
  font-size: 1.1rem;
}

.sc-monitor-visual {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.sc-monitor-visual::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, rgba(255,255,255,0) 60%);
  pointer-events: none;
}

.sc-radar-screen {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px solid rgba(96, 165, 250, 0.2);
  margin: 0 auto 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sc-radar-screen::before {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  border: 1px solid rgba(96, 165, 250, 0.15);
}

.sc-radar-screen::after {
  content: "";
  position: absolute;
  width: 40%;
  height: 40%;
  border-radius: 50%;
  border: 1px solid rgba(96, 165, 250, 0.1);
}

.sc-radar-sweep {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(96, 165, 250, 0.4) 0deg, rgba(96, 165, 250, 0) 90deg);
  animation: radar-spin 4s linear infinite;
  transform-origin: center;
}

.sc-radar-center {
  width: 12px;
  height: 12px;
  background: #3b82f6;
  border-radius: 50%;
  box-shadow: 0 0 15px #3b82f6;
  z-index: 2;
  position: relative;
}

.sc-radar-blip {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--sc-accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--sc-accent);
  z-index: 2;
  animation: blip-fade 2s infinite;
}

.blip-1 { top: 25%; left: 30%; animation-delay: 0.5s; }
.blip-2 { top: 65%; left: 70%; animation-delay: 1.5s; }

.sc-monitor-bars {
  display: grid;
  gap: 1.25rem;
}

.sc-bar-group {
  display: grid;
  gap: 0.5rem;
}

.sc-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 700;
  color: #94a3b8;
}

.sc-bar-label span.status-text {
  color: #60a5fa;
}

.sc-bar-bg {
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  overflow: hidden;
}

.sc-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #10b981);
  border-radius: 99px;
  width: 0;
  transition: width 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active .sc-bar-fill-1 { width: 100%; }
.reveal.active .sc-bar-fill-2 { width: 95%; }
.reveal.active .sc-bar-fill-3 { width: 100%; }

/* 5. INDUSTRIES SERVED*/
.sc-ind-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.sc-ind-card {
  background: #ffffff;
  border: 1px solid var(--sc-border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--sc-shadow);
  transition: var(--sc-transition);
}

.sc-ind-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sc-shadow-hover);
  border-color: rgba(37, 99, 235, 0.15);
}

.sc-ind-icon {
  width: 46px;
  height: 46px;
  background: rgba(37, 99, 235, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sc-primary);
  font-size: 1.25rem;
  margin: 0 auto 1.25rem;
  transition: var(--sc-transition);
}

.sc-ind-card:hover .sc-ind-icon {
  background: var(--sc-primary);
  color: #ffffff;
}

.sc-ind-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--sc-dark);
}

/*6. WHY CHOOSE DISPATCHER PRO */
.sc-why-choose-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.sc-why-choose-card {
  background: #ffffff;
  border: 1px solid var(--sc-border);
  border-radius: 20px;
  padding: 2.25rem;
  box-shadow: var(--sc-shadow);
  transition: var(--sc-transition);
  display: flex;
  gap: 1.25rem;
}

.sc-why-choose-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sc-shadow-hover);
  border-color: rgba(37, 99, 235, 0.15);
}

.sc-why-choose-num {
  font-size: 2rem;
  font-weight: 800;
  color: rgba(37, 99, 235, 0.15);
  line-height: 1;
  transition: var(--sc-transition);
}

.sc-why-choose-card:hover .sc-why-choose-num {
  color: var(--sc-primary);
  transform: scale(1.1);
}

.sc-why-choose-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--sc-dark);
  margin-bottom: 0.75rem;
}

.sc-why-choose-content p {
  font-size: 0.9rem;
  color: var(--sc-muted);
  line-height: 1.5;
}

/*  7. FAQ ACCORDION SECTION*/
.sc-faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.sc-faq-item {
  background: #ffffff;
  border: 1px solid var(--sc-border);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--sc-transition);
}

.sc-faq-item:hover {
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.04);
}

.sc-faq-question {
  width: 100%;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--sc-dark);
  cursor: pointer;
  outline: none;
  transition: var(--sc-transition);
}

.sc-faq-question i {
  font-size: 0.9rem;
  color: var(--sc-muted);
  transition: transform 0.3s ease;
}

.sc-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 1.5rem;
  color: var(--sc-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.sc-faq-item.open {
  border-color: var(--sc-primary);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.08);
}

.sc-faq-item.open .sc-faq-question {
  color: var(--sc-primary);
}

.sc-faq-item.open .sc-faq-question i {
  transform: rotate(180deg);
  color: var(--sc-primary);
}

.sc-faq-item.open .sc-faq-answer {
  padding-bottom: 1.5rem;
  /* Max height gets calculated dynamically via JS */
}

/* 8. DYNAMIC CALL TO ACTION BANNER */
.sc-cta-banner {
  background: linear-gradient(135deg, #1e3a8a, #0f172a);
  border-radius: 32px;
  padding: 5rem 4rem;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.sc-cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.15) 0%, rgba(255,255,255,0) 65%);
  pointer-events: none;
}

.sc-cta-banner__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.sc-cta-banner h2 {
  font-size: clamp(2.25rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.sc-cta-banner p {
  color: #94a3b8;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.sc-cta-banner .sc-btn--primary {
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.sc-cta-banner .sc-btn--primary:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

/*ANIMATION KEYFRAMES*/
@keyframes radar-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes blip-fade {
  0%, 100% { opacity: 0; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.1); }
}

@keyframes pulse-dot {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

/* RESPONSIVE DESIGN BREAKPOINTS*/
@media (max-width: 992px) {
  .sc-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .sc-hero__badge {
    justify-content: center;
  }
  
  .sc-hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .sc-hero__ctas {
    justify-content: center;
  }
  
  .sc-monitor-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .sc-monitor-text {
    text-align: center;
  }
  
  .sc-cta-banner {
    padding: 4rem 2rem;
    border-radius: 24px;
  }
}

@media (max-width: 576px) {
  .sc-section {
    padding: 4rem 0;
  }
  
  .sc-services-grid {
    grid-template-columns: 1fr;
  }
  
  .sc-why-choose-card {
    flex-direction: column;
    text-align: center;
  }
  
  .sc-why-choose-num {
    margin-bottom: 0.5rem;
  }
  
  .sc-monitor-tags {
    grid-template-columns: 1fr;
  }
  
  .sc-cta-banner h2 {
    font-size: 1.75rem;
  }
}

/*3D TILT & 3-COLOR GRADIENT STYLING FOR CARDS*/

/* Light Cards: DQF, Why section, Services, Industries, Choose section, FAQs */
.sc-hero__card,
.sc-why-card,
.sc-service-card,
.sc-ind-card,
.sc-why-choose-card,
.sc-faq-item {
  background: linear-gradient(135deg, #ffffff 0%, #f1f7fe 55%, #e8fdf6 100%) !important;
  border: 1px solid rgba(37, 99, 235, 0.15) !important;
  transform-style: preserve-3d;
  will-change: transform, box-shadow;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, border-color 0.3s ease;
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
}


.sc-hero__card:hover,
.sc-why-card:hover,
.sc-service-card:hover,
.sc-ind-card:hover,
.sc-why-choose-card:hover,
.sc-faq-item:hover {
  border-color: rgba(16, 185, 129, 0.3) !important;
}


.sc-monitor-visual {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #020617 100%) !important;
  border: 1px solid rgba(96, 165, 250, 0.25) !important;
  transform-style: preserve-3d;
  will-change: transform, box-shadow;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, border-color 0.3s ease;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
}

.sc-monitor-visual:hover {
  border-color: rgba(96, 165, 250, 0.45) !important;
}


.sc-why-icon,
.sc-service-icon,
.sc-ind-icon,
.sc-why-choose-num,
.sc-radar-screen,
.sc-card-item__icon {
  transform: translateZ(30px);
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
}

.sc-why-card h3,
.sc-service-card h3,
.sc-ind-card h4,
.sc-why-choose-content h3,
.sc-card__title,
.sc-faq-question {
  transform: translateZ(20px);
  transform-style: preserve-3d;
}

