:root {
  --ve-purple: #8b5cf6;
  --ve-cyan: #06b6d4;
  --ve-orange: #f97316;
  --ve-teal: #14b8a6;
  --ve-dark: #06070f;
  --ve-muted: #475569;
  --ve-light: #f8fafc;
  --ve-grad: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
  --ve-glass: rgba(255, 255, 255, 0.05);
  --ve-glass-border: rgba(255, 255, 255, 0.1);
  --it-grad: var(--ve-grad);
}

/* ── MODERN ENTERPRISE ELEGANCE HERO ── */
.it-hero-enterprise-v4 {
  position: relative;
  background-image: url('../../images/it-consultation-for-business/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.it-hero-bg-v4 {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 10% 10%, rgba(139, 92, 246, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 90%, rgba(249, 115, 22, 0.05) 0%, transparent 40%);
  z-index: 1;
}

.it-hero-glow-v4 {
  position: absolute;
  top: 50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 2;
  transform: translateY(-50%);
}

.it-hero-content-v4 {
  position: relative;
  z-index: 10;
}

.it-hero-badge-v4 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  backdrop-filter: blur(10px);
}

.it-pulse-v4 {
  width: 8px;
  height: 8px;
  background: var(--ve-purple);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--ve-purple);
  animation: spark-pulse 2s infinite;
}

.it-hero-title-v4 {
  font-size: clamp(40px, 5.5vw, 75px);
  font-weight: 950;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -3px;
}

.it-grad-v4 {
  background: linear-gradient(to right, #fff, var(--ve-purple), var(--ve-orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.it-hero-desc-v4 {
  font-size: 19px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  max-width: 580px;
  font-weight: 500;
}

/* Premium Buttons v4 */
.btn-premium-v4 {
  padding: 18px 40px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 900;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
}

.btn-premium-v4.p-fill {
  background: var(--ve-grad);
  color: #fff;
  box-shadow: 0 20px 40px rgba(109, 44, 249, 0.2);
}

.btn-premium-v4.p-fill:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 25px 50px rgba(109, 44, 249, 0.4);
}

.btn-premium-v4.p-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(10px);
}

.btn-premium-v4.p-outline:hover {
  background: #fff;
  color: #06070f;
  transform: translateY(-5px);
}

/* Trust Section */
.trust-avatars {
  display: flex;
  align-items: center;
}

.t-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid #06070f;
  margin-right: -15px;
  overflow: hidden;
  background: #1e293b;
}

.t-av img { width: 100%; height: 100%; object-fit: cover; }
.t-av.plus {
  background: var(--ve-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  z-index: 5;
}

.t-stars {
  color: #fbbf24;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 2px;
}

.t-lbl {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

/* Visual Column */
.it-hero-visual-v4 {
  position: relative;
  padding: 40px;
}

.it-visual-frame-v4 {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1.1;
  background: #1e293b;
  border-radius: 60px 200px 60px 60px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
}

.it-visual-v-fill {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.5s ease;
}

.it-hero-visual-v4:hover .it-visual-v-fill { opacity: 1; }

/* Floating Badges */
.it-float-badge-v4 {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 15px 25px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 20;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

.it-float-badge-v4:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-8px) scale(1.05);
  border-color: var(--ve-purple);
}

.fb-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--ve-purple), var(--ve-orange));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.fb-val {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.fb-lbl {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fb-1 { top: 10%; left: -20px; animation: float 6s ease-in-out infinite; }
.fb-2 { bottom: 15%; right: -30px; animation: float 6s ease-in-out infinite 1s; }
.fb-3 { top: 50%; right: -20px; transform: translateY(-50%); animation: float 7s ease-in-out infinite 2s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@media (max-width: 1200px) {
  .it-hero-visual-v4 { padding: 20px; }
  .fb-1, .fb-2, .fb-3 { position: relative; top: auto; left: auto; right: auto; margin-bottom: 15px; transform: none !important; animation: none; }
  .it-hero-visual-v4 { display: flex; flex-direction: column; gap: 15px; }
  .it-visual-frame-v4 { border-radius: 40px; }
}

@media (max-width: 991px) {
  .it-hero-enterprise-v4 { padding: 80px 0; }
  .it-hero-title-v4 { font-size: 48px; }
  .it-visual-frame-v4 { margin-top: 50px; }
}

@media (max-width: 576px) {
  .it-hero-title-v4 { font-size: 36px; }
  .it-hero-actions-v4 { flex-direction: column; gap: 15px; }
  .btn-premium-v4 { width: 100%; justify-content: center; }
}

@keyframes spark-pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}


*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Manrope', sans-serif;
  background: #ffffff;
  color: var(--ve-dark);
}



/* ── MODERN CLARITY OVERVIEW (LIGHT THEME) ── */
.it-overview-light-v2 {
  padding: 80px 0;
  background: #fdfdff;
  position: relative;
  overflow: hidden;
}

.light-glow-blob-1 {
  position: absolute;
  top: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.04) 0%, transparent 70%);
  z-index: 1;
}

.light-glow-blob-2 {
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.03) 0%, transparent 70%);
  z-index: 1;
}

/* Aura Frame for Visual */
.it-light-aura-frame {
  position: relative;
  padding: 30px;
  z-index: 5;
}

.aura-pulse-element {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  border-radius: 40px;
  animation: aura-pulse 4s infinite alternate;
  z-index: -1;
}

@keyframes aura-pulse {
  0% { transform: scale(0.9); opacity: 0.5; }
  100% { transform: scale(1.1); opacity: 1; }
}

.light-img-inner {
  position: relative;
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(15, 23, 42, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.it-ov-img-light {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.it-light-aura-frame:hover .it-ov-img-light {
  transform: scale(1.05);
}

/* Floating Metric Badge */
.it-ov-metric-badge-light {
  position: absolute;
  bottom: 0;
  right: -10px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 15px 25px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
  border: 1px solid #fff;
  animation: float-v 6s ease-in-out infinite;
}

@keyframes float-v {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.mb-icon-light {
  width: 40px;
  height: 40px;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ve-purple);
}

.val-light {
  display: block;
  font-size: 16px;
  font-weight: 900;
  color: var(--ve-dark);
}

.lbl-light {
  font-size: 11px;
  font-weight: 700;
  color: var(--ve-muted);
  text-transform: uppercase;
}

/* Content Area */
.it-ov-eyebrow-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  color: var(--ve-purple);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.dot-purple-glow {
  width: 8px;
  height: 8px;
  background: var(--ve-purple);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--ve-purple);
}

.it-ov-title-light {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 950;
  color: var(--ve-dark);
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 30px;
}

.it-ov-title-light span {
  background: linear-gradient(to right, var(--ve-purple), var(--ve-orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.it-ov-desc-light {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ve-muted);
  max-width: 650px;
}

/* Bento Grid */
.it-bento-grid-light {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.bento-item-light {
  background: #ffffff;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(15, 23, 42, 0.05);
  transition: all 0.4s ease;
}

.bento-item-light:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
  border-color: rgba(139, 92, 246, 0.2);
}

.bento-wide {
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 25px;
}

.bi-icon-light {
  width: 50px;
  height: 50px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ve-purple);
  font-size: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.bento-item-light:hover .bi-icon-light {
  background: var(--ve-grad);
  color: #fff;
}

.bi-content-light h4 {
  font-size: 18px;
  font-weight: 850;
  color: var(--ve-dark);
  margin-bottom: 8px;
}

.bi-content-light p {
  font-size: 14px;
  color: var(--ve-muted);
  margin: 0;
  line-height: 1.5;
}

/* CTA */
.btn-modern-light-fill {
  padding: 16px 35px;
  background: var(--ve-dark);
  color: #fff;
  border-radius: 14px;
  text-decoration: none !important;
  font-weight: 850;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.btn-modern-light-fill:hover {
  background: var(--ve-purple);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(139, 92, 246, 0.3);
  color: #fff;
}

.cta-stat-light {
  font-size: 13px;
  font-weight: 800;
  color: var(--ve-muted);
  border-left: 2px solid rgba(15, 23, 42, 0.1);
  padding-left: 20px;
  display: block;
}

@media (max-width: 991px) {
  .it-bento-grid-light { grid-template-columns: 1fr; }
  .bento-wide { flex-direction: column; align-items: flex-start; }
  .bento-wide { grid-column: span 1; }
  .it-ov-title-light { font-size: 38px; }
  .it-overview-light-v2 { padding: 80px 0; }
}

@media (max-width: 576px) {
  .it-ov-cta-text { display: none; }
}

@media (max-width: 767px) {
  .ve-contact-form-card {
    padding: 30px 20px;
  }
}

/* ── INTERACTIVE SOLUTION SUITE (LIGHT THEME) ── */
.it-services-suite-light {
  padding: 80px 0;
  background: #fdfdff;
  position: relative;
  overflow: hidden;
}

.suite-bg-light {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 0% 0%, rgba(139, 92, 246, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(249, 115, 22, 0.03) 0%, transparent 40%);
  z-index: 1;
}

.it-suite-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(139, 92, 246, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.1);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ve-purple);
  margin-bottom: 25px;
}

.it-dot-suite {
  width: 6px;
  height: 6px;
  background: var(--ve-purple);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--ve-purple);
}

.it-suite-title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 950;
  color: var(--ve-dark);
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 25px;
}

.it-suite-title span {
  background: linear-gradient(to right, var(--ve-purple), var(--ve-orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.it-suite-desc {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ve-muted);
  max-width: 700px;
}

/* Service Cards */
.it-suite-card-light {
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 36px;
  position: relative;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
  border: 1px solid rgba(15, 23, 42, 0.05);
  height: 100%;
}

.it-suite-card-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.03), transparent);
  border-radius: 36px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.it-suite-card-light:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(15, 23, 42, 0.08);
  border-color: rgba(139, 92, 246, 0.15);
}

.it-suite-card-light:hover::before {
  opacity: 1;
}

/* Focal Card (Business) */
.it-suite-card-light.focal-card {
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.08);
  border-color: rgba(139, 92, 246, 0.1);
}

.it-card-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background: var(--ve-grad);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Card Elements */
.it-card-index {
  position: absolute;
  top: -10px;
  right: 30px;
  font-size: 80px;
  font-weight: 950;
  color: rgba(15, 23, 42, 0.02);
  pointer-events: none;
  transition: color 0.4s ease;
}

.it-suite-card-light:hover .it-card-index {
  color: rgba(139, 92, 246, 0.05);
}

.it-card-icon-box {
  width: 65px;
  height: 65px;
  background: rgba(139, 92, 246, 0.06);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ve-purple);
  font-size: 24px;
  margin-bottom: 35px;
  transition: all 0.4s ease;
}

.it-card-icon-box.icon-orange {
  background: rgba(249, 115, 22, 0.06);
  color: var(--ve-orange);
}

.it-card-icon-box.icon-teal {
  background: rgba(20, 184, 166, 0.06);
  color: var(--ve-teal);
}

.it-suite-card-light:hover .it-card-icon-box {
  transform: rotate(10deg) scale(1.1);
  background: var(--ve-grad);
  color: #fff;
  box-shadow: 0 10px 20px rgba(109, 44, 249, 0.2);
}

.it-card-content-light h3 {
  font-size: 22px;
  font-weight: 900;
  color: var(--ve-dark);
  margin-bottom: 15px;
  line-height: 1.25;
}

.it-card-content-light p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ve-muted);
  margin-bottom: 35px;
}

/* Action Link */
.it-suite-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
  font-weight: 800;
  font-size: 14px;
  color: var(--ve-purple);
  position: relative;
  transition: gap 0.3s ease;
}

.it-suite-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.it-suite-link:hover {
  gap: 18px;
  color: var(--ve-orange);
}

.it-suite-link:hover i {
  transform: translateX(3px);
}


.c-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.c-avatar-fb {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
}

.author-info .c-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--ve-dark);
}

.author-info .c-role {
  font-size: 12px;
  color: var(--ve-muted);
}

.card-rating {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.r-num {
  font-size: 14px;
  font-weight: 800;
  color: var(--ve-dark);
}

.stars {
  display: flex;
  gap: 2px;
}

.st {
  width: 12px;
  height: 12px;
  background: #FFD700;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.st.dim {
  background: #E5E7EB;
}

.nav-row {
  margin-top: 24px;
  display: flex;
  gap: 12px;
}

.nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #E5E7EB;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.nav-btn:hover {
  background: var(--ve-purple);
  color: #fff;
  border-color: var(--ve-purple);
}

/* FAQ */
.faq-section {
  padding: 120px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.faq-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.faq-orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(139, 92, 246, 0.05);
  top: -100px;
  left: -150px;
}

.faq-orb-2 {
  width: 450px;
  height: 450px;
  background: rgba(20, 184, 166, 0.04);
  bottom: -150px;
  right: -100px;
}

.faq-header {
  text-align: center;
  margin-bottom: 70px;
}

.faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(139, 92, 246, 0.06);
  border: 1px solid rgba(139, 92, 246, 0.12);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ve-purple);
  margin-bottom: 24px;
}

.faq-dot-pulse {
  width: 8px;
  height: 8px;
  background: var(--ve-purple);
  border-radius: 50%;
  position: relative;
}

.faq-dot-pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--ve-purple);
  opacity: 0;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.faq-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--ve-dark);
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.faq-title-grad {
  background: var(--ve-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-title-bar {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--ve-purple), var(--ve-teal));
  border-radius: 2px;
  margin: auto;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: auto;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #f0eeff;
  border-radius: 20px;
  padding: 6px;
  transition: all 0.4s;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.03);
}

.faq-item:hover {
  border-color: rgba(139, 92, 246, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.08);
}

.faq-item.active {
  border-color: var(--ve-purple);
  background: linear-gradient(135deg, #ffffff, rgba(139, 92, 246, 0.02));
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.1);
}

.faq-question {
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-question span {
  font-size: 18px;
  font-weight: 700;
  color: var(--ve-dark);
}

.faq-item.active .faq-question span {
  color: var(--ve-purple);
}

.faq-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f3f0ff;
  color: var(--ve-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.4s;
}

.faq-item.active .faq-toggle {
  background: var(--ve-purple);
  color: #ffffff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s;
  padding: 0 30px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 30px;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ve-muted);
  margin: 0;
}

.faq-footer-cta {
  margin-top: 50px;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.faq-cta-link {
  color: var(--ve-purple);
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.faq-cta-link:hover {
  gap: 12px;
}

@media(max-width:1100px) {
  .testi-grid {
    grid-template-columns: 240px 1fr;
  }
}

@media(max-width:991px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }

  .rating-card_testi {
    min-height: auto;
  }

  .lets-talk-col {
    display: none;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 40px 0;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-question span {
    font-size: 16px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding-bottom: 20px;
  }
}

@media(max-width:576px) {
  .testi-section {
    padding: 70px 0 0;
  }

  .big-rating {
    font-size: 72px;
  }
}



/* ── IT STATS BAR V2 (PREMIUM) ── */
.it-stats-v2 {
  padding: 0 0 60px;
  position: relative;
  z-index: 20;
}

.it-stats-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffff;
  backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 40px 60px;
  border-radius: 35px;
  margin-top: -65px;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(139, 92, 246, 0.15);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.it-stats-wrapper:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(139, 92, 246, 0.2);
}

.it-stat-item-v2 {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  justify-content: center;
}

.it-stat-icon-v2 {
  width: 60px;
  height: 60px;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--ve-purple);
  border: 1px solid rgba(139, 92, 246, 0.2);
  transition: all 0.4s ease;
}

.it-stat-item-v2:hover .it-stat-icon-v2 {
  background: var(--ve-grad);
  color: #fff;
  transform: scale(1.1) rotate(10deg);
}

.it-stat-num-v2 {
  font-size: 36px;
  font-weight: 950;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
  background: var(--ve-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
}

.it-stat-label-v2 {
  font-size: 11px;
  font-weight: 800;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.it-stat-sep-v2 {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
  margin: 0 10px;
}

@media (max-width: 1199px) {
  .it-stats-wrapper {
    padding: 30px 40px;
  }
  .it-stat-num-v2 {
    font-size: 28px;
  }
}

@media (max-width: 991px) {
  .it-stats-wrapper {
    flex-wrap: wrap;
    margin-top: -50px;
    padding: 30px;
    gap: 30px;
  }
  .it-stat-item-v2 {
    flex: 0 0 45%;
    justify-content: flex-start;
  }
  .it-stat-sep-v2 {
    display: none;
  }
}

@media (max-width: 576px) {
  .it-stat-item-v2 {
    flex: 0 0 100%;
  }
  .it-stats-v2 {
    padding-bottom: 60px;
  }
}




/* ── SPECIALIZED SERVICES SECTION V2 (PREMIUM) ── */
.it-services-premium {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.premium-glow-left {
  position: absolute;
  top: 10%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.premium-glow-right {
  position: absolute;
  bottom: 10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.04) 0%, transparent 70%);
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.premium-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ve-purple);
  background: rgba(139, 92, 246, 0.08);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 25px;
}

.dot-indicator {
  width: 8px;
  height: 8px;
  background: var(--ve-grad);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
  animation: dot-pulse 2s infinite;
}

@keyframes dot-pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

.premium-sec-title {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 950;
  color: var(--ve-dark);
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.premium-sec-title span {
  background: var(--ve-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.premium-sec-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ve-muted);
  max-width: 650px;
  margin-bottom: 40px;
}

.premium-service-card {
  background: #ffffff;
  border: 1px solid rgba(139, 92, 246, 0.08);
  border-radius: 30px;
  padding: 45px 35px;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  z-index: 2;
}

.premium-service-card:hover, .active-card {
  transform: translateY(-10px);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 30px 60px rgba(139, 92, 246, 0.1);
}

.card-glow-bg {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transition: all 0.6s ease;
  z-index: -1;
}

.premium-service-card:hover .card-glow-bg, .active-card .card-glow-bg {
  transform: scale(3.5);
  background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
}

.premium-icon-box {
  width: 65px;
  height: 65px;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--ve-purple);
  margin-bottom: 30px;
  transition: all 0.4s ease;
  border: 1px solid rgba(139, 92, 246, 0.15);
}

.premium-icon-box.box-orange {
  background: rgba(249, 115, 22, 0.1);
  color: var(--ve-orange);
  border-color: rgba(249, 115, 22, 0.15);
}

.premium-icon-box.box-teal {
  background: rgba(20, 184, 166, 0.1);
  color: var(--ve-teal);
  border-color: rgba(20, 184, 166, 0.15);
}

.premium-service-card:hover .premium-icon-box {
  background: var(--ve-grad);
  color: #fff;
  transform: rotateY(180deg);
}

.premium-card-content h3 {
  font-size: 22px;
  font-weight: 900;
  color: var(--ve-dark);
  margin-bottom: 15px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.premium-card-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ve-muted);
  margin-bottom: 30px;
  flex-grow: 1;
}

.premium-link {
  font-size: 13px;
  font-weight: 850;
  color: var(--ve-purple);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
}

.premium-link i {
  transition: transform 0.3s ease;
}

.premium-service-card:hover .premium-link {
  color: var(--ve-dark);
  gap: 15px;
}

.premium-service-card:hover .premium-link i {
  transform: translateX(5px);
}

@media (max-width: 991px) {
  .it-services-premium {
    padding: 70px 0;
  }
}

/* ── STRATEGIC PROCESS SECTION V2 (REDESIGNED) ── */
.it-process-v2 {
  padding: 120px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.it-process-glow-top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 400px;
  background: radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.premium-sec-line {
  width: 80px;
  height: 4px;
  background: var(--ve-grad);
  border-radius: 10px;
  margin-top: 20px;
}

.it-process-hub {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 50px;
}

/* Left: Navigator */
.it-process-navigator {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── STRATEGIC WORKFLOW BENTO (BUSINESS REDESIGN) ── */
.it-workflow-v4 {
  padding: 120px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.it-wf-mesh-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 0% 0%, rgba(139, 92, 246, 0.02) 0%, transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(20, 184, 166, 0.02) 0%, transparent 40%);
  z-index: 1;
}

.it-wf-mesh-dot {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(139, 92, 246, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.4;
  z-index: 2;
}

.it-wf-badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid rgba(139, 92, 246, 0.15);
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ve-purple);
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.05);
}

.it-wf-pulse {
  width: 7px;
  height: 7px;
  background: var(--ve-purple);
  border-radius: 50%;
  position: relative;
}

.it-wf-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--ve-purple);
  animation: it-wf-pulse-ring 2s infinite;
}

@keyframes it-wf-pulse-ring {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.5); opacity: 0; }
}

.it-wf-title-v2 {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 950;
  color: var(--ve-dark);
  line-height: 1;
  letter-spacing: -3px;
}

.it-wf-title-v2 span {
  background: linear-gradient(135deg, var(--ve-purple), var(--ve-orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Bento Grid & Pathway */
.it-wf-bento-grid {
  position: relative;
  margin-top: 60px;
}

.it-wf-svg-path {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  height: 100px;
  pointer-events: none;
  z-index: 5;
}

.it-active-energy {
  animation: energy-move 15s linear infinite;
  stroke-dasharray: 20 20;
}

@keyframes energy-move {
  0% { stroke-dashoffset: 400; }
  100% { stroke-dashoffset: 0; }
}

/* Phase Cards V2 */
.it-wf-card-v2 {
  background: #ffffff;
  padding: 40px;
  border-radius: 32px;
  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.03);
  position: relative;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  height: 100%;
  z-index: 10;
}

.it-wf-card-v2:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 40px 90px rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.2);
}

.it-wf-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}

.it-wf-index-v2 {
  font-size: 54px;
  font-weight: 950;
  line-height: 1;
  color: rgba(139, 92, 246, 0.06);
  transition: color 0.4s ease;
}

.it-wf-card-v2:hover .it-wf-index-v2 {
  color: var(--ve-purple);
}

.it-wf-status {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ve-muted);
  background: rgba(15, 23, 42, 0.05);
  padding: 5px 12px;
  border-radius: 50px;
}

.it-wf-card-icon-v2 {
  width: 64px;
  height: 64px;
  background: #f8fafc;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--ve-purple);
  margin-bottom: 30px;
  transition: all 0.4s ease;
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.it-wf-card-v2:hover .it-wf-card-icon-v2 {
  background: var(--ve-grad);
  color: #fff;
  transform: rotate(-10deg);
  box-shadow: 0 15px 30px rgba(139, 92, 246, 0.2);
}

.it-wf-card-body h3 {
  font-size: 21px;
  font-weight: 900;
  color: var(--ve-dark);
  margin-bottom: 15px;
  line-height: 1.3;
}

.it-wf-card-body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ve-muted);
  margin-bottom: 25px;
}

.it-wf-card-badge-v2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--ve-dark);
}

.pulse-emerald, .pulse-orange, .pulse-teal, .pulse-purple {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  animation: it-wf-pulse-ring 2s infinite;
}

.pulse-emerald { background: #10b981; }
.pulse-orange { background: var(--ve-orange); }
.pulse-teal { background: var(--ve-teal); }
.pulse-purple { background: var(--ve-purple); }

/* Accent Colors */
.accent-orange .it-wf-card-icon-v2 { color: var(--ve-orange); }
.accent-teal .it-wf-card-icon-v2 { color: var(--ve-teal); }
.accent-purple .it-wf-card-icon-v2 { color: var(--ve-purple); }

@media (max-width: 991px) {
  .it-workflow-v4 { padding: 100px 0; }
  .it-wf-card-v2 { padding: 30px; }
  .it-wf-title-v2 { font-size: 42px; }
  .it-wf-svg-path { display: none; }
}

@media (max-width: 576px) {
  .it-wf-card-v2 { text-align: center; }
  .it-wf-head-v2 { justify-content: center; }
  .it-wf-card-icon-v2 { margin-inline: auto; }
}

/* ── THE CONSULTATION TERMINAL (REDESIGNED) ── */
.it-terminal-section {
  padding: 120px 0;
  background: #f8faff;
  position: relative;
  overflow: hidden;
}

.terminal-bg-glow {
  position: absolute;
  bottom: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.it-terminal-desc {
  font-size: 18px;
  line-height: 1.8;
  color: var(--ve-muted);
  max-width: 500px;
}

.it-terminal-feats {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.it-terminal-feat {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(139, 92, 246, 0.05);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.it-terminal-feat:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
  border-color: rgba(139, 92, 246, 0.15);
}

.feat-icon-box {
  width: 55px;
  height: 55px;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--ve-purple);
  flex-shrink: 0;
}

.feat-icon-box.box-orange { color: #f97316; background: rgba(249, 115, 22, 0.1); }
.feat-icon-box.box-teal { color: #14b8a6; background: rgba(20, 184, 166, 0.1); }

.feat-text h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--ve-dark);
}

.feat-text p {
  font-size: 14px;
  margin: 0;
  color: var(--ve-muted);
}

.feat-indicator {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: var(--ve-grad);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s ease;
}

.it-terminal-feat:hover .feat-indicator {
  right: -10px;
  opacity: 0.1;
}

/* Form Card */
.it-terminal-form-card {
  background: #ffffff;
  border-radius: 40px;
  border: 1px solid rgba(139, 92, 246, 0.15);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
}

.form-header {
  background: #f8faff;
  padding: 15px 30px;
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ve-purple);
}

.form-dots {
  margin-left: auto;
  display: flex;
  gap: 6px;
}

.form-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.2);
}

/* Input Groups */
.it-input-group {
  position: relative;
}

.it-input-group label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: var(--ve-purple);
  margin-bottom: 8px;
  opacity: 0.8;
}

.it-input-group input,
.it-input-group select,
.it-input-group textarea {
  width: 100%;
  padding: 12px 0;
  background: transparent;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--ve-dark);
  outline: none !important;
}

.it-input-group textarea {
  resize: none;
}

.input-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(139, 92, 246, 0.1);
  transition: all 0.4s ease;
}

.it-input-group input:focus + .input-line,
.it-input-group select:focus + .input-line,
.it-input-group textarea:focus + .input-line {
  background: var(--ve-grad);
  box-shadow: 0 2px 10px rgba(139, 92, 246, 0.2);
}

.it-input-group input::placeholder,
.it-input-group textarea::placeholder {
  color: #a0aec0;
  font-weight: 400;
  font-size: 14px;
}

/* Terminal Button */
.it-terminal-btn {
  background: var(--ve-grad);
  border: none;
  padding: 18px 45px;
  border-radius: 50px;
  color: #fff;
  font-weight: 900;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 15px 30px rgba(109, 44, 249, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.it-terminal-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(109, 44, 249, 0.3);
}

.it-terminal-btn:active {
  transform: translateY(0);
}

@media (max-width: 991px) {
  .it-terminal-section {
    padding: 80px 0;
  }
  
  .it-terminal-desc {
    max-width: 100%;
  }

  .it-terminal-form-card {
    margin-top: 20px;
  }
}

/* ── CLIENT TESTIMONIALS (SYNCHRONIZED) ── */
.testi-section {
  padding: 100px 0px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.testi-section .shape-23 {
  position: absolute;
  top: 0;
  left: 0;
  width: 520px;
  height: 520px;
  background-image: url('https://expert-themes.com/html/ithub/ithub/assets/images/background/pattern-23.png');
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

.top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 44px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--ve-orange);
  margin-bottom: 18px;
}

.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ve-purple);
}

.eyebrow .dot2 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ve-orange);
}

.eyebrow .dot3 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e5e7eb;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--ve-purple), var(--ve-orange));
  border-radius: 2px;
}

.main-title {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 950;
  color: var(--ve-dark);
  letter-spacing: -3px;
  line-height: 1;
}

.main-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--ve-purple), var(--ve-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lets-talk-col {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  padding-top: 6px;
}

.lets-talk-text {
  font-size: 24px;
  font-weight: 800;
  font-style: italic;
  color: var(--ve-purple);
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 26px;
  background: var(--ve-dark);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
}

.contact-btn:hover {
  background: var(--ve-purple);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.35);
  transform: translateY(-2px);
  color: #fff;
}

.lets-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--ve-muted);
  max-width: 320px;
  text-align: right;
}

.testi-grid {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 22px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.rating-card_testi {
  background: linear-gradient(160deg, #f3f0ff 0%, #ede9fe 100%);
  border-radius: 24px;
  padding: 40px 30px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  min-height: 400px;
  border: 1px solid rgba(139, 92, 246, 0.10);
}

.big-rating {
  font-size: 96px;
  font-weight: 900;
  color: var(--ve-dark);
  letter-spacing: -6px;
  line-height: 1;
  margin-bottom: 22px;
}

.avatar-stack {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}

.av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  margin-right: -11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
}

.av1 {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  z-index: 4;
}

.av2 {
  background: linear-gradient(135deg, #f97316, #fb923c);
  z-index: 3;
}

.av3 {
  background: linear-gradient(135deg, #14b8a6, #0d9488);
  z-index: 2;
}

.av4 {
  background: linear-gradient(135deg, #f43f5e, #e11d48);
  z-index: 1;
}

.client-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ve-dark);
  margin-top: 14px;
}

.client-sub {
  font-size: 12px;
  color: var(--ve-muted);
  margin-bottom: 22px;
}

.rating-tagline {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--ve-dark);
  line-height: 1.35;
  margin-bottom: 30px;
  flex: 1;
}

.testi-right {
  background-image: url('https://expert-themes.com/html/ithub/ithub/assets/images/background/pattern-23.png');
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
  border-radius: 24px;
  padding: 36px 32px 40px;
  position: relative;
  overflow: hidden;
}

.testi-card {
  background: #fff;
  border-radius: 20px;
  padding: 34px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  position: relative;
  transition: all 0.3s;
}

.testi-card:hover {
  transform: translateY(-5px);
}

.card-indicator {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 6px;
  height: 30px;
  background: var(--ve-purple);
  border-radius: 10px;
}

.card-indicator.orange {
  background: var(--ve-orange);
}

.card-indicator.teal {
  background: var(--ve-teal);
}

.card-quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ve-muted);
  margin-bottom: 30px;
  flex: 1;
}

.card-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.c-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.c-avatar-fb {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
}

.author-info .c-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--ve-dark);
}

.author-info .c-role {
  font-size: 12px;
  color: var(--ve-muted);
}

.card-rating {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.r-num {
  font-size: 14px;
  font-weight: 800;
  color: var(--ve-dark);
}

.stars {
  display: flex;
  gap: 2px;
}

.st {
  width: 12px;
  height: 12px;
  background: #FFD700;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.st.dim {
  background: #E5E7EB;
}

.nav-row {
  margin-top: 24px;
  display: flex;
  gap: 12px;
}

.nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #E5E7EB;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}


/* ── FAQ (SYNCHRONIZED) ── */
.faq-section {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.faq-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.faq-orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(139, 92, 246, 0.05);
  top: -100px;
  left: -150px;
}

.faq-orb-2 {
  width: 450px;
  height: 450px;
  background: rgba(20, 184, 166, 0.04);
  bottom: -150px;
  right: -100px;
}

.faq-header {
  text-align: center;
  margin-bottom: 70px;
}

.faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(139, 92, 246, 0.06);
  border: 1px solid rgba(139, 92, 246, 0.12);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ve-purple);
  margin-bottom: 24px;
}

.faq-dot-pulse {
  width: 8px;
  height: 8px;
  background: var(--ve-purple);
  border-radius: 50%;
  position: relative;
}

.faq-dot-pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--ve-purple);
  opacity: 0;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.faq-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--ve-dark);
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.faq-title-grad {
  background: var(--ve-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-title-bar {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--ve-purple), var(--ve-teal));
  border-radius: 2px;
  margin: auto;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: auto;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #f0eeff;
  border-radius: 20px;
  padding: 6px;
  transition: all 0.4s;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.03);
}

.faq-item:hover {
  border-color: rgba(139, 92, 246, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.08);
}

.faq-item.active {
  border-color: var(--ve-purple);
  background: linear-gradient(135deg, #ffffff, rgba(139, 92, 246, 0.02));
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.1);
}

.faq-question {
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-question span {
  font-size: 18px;
  font-weight: 700;
  color: var(--ve-dark);
}

.faq-item.active .faq-question span {
  color: var(--ve-purple);
}

.faq-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f3f0ff;
  color: var(--ve-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.4s;
}

.faq-item.active .faq-toggle {
  background: var(--ve-purple);
  color: #ffffff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s;
  padding: 0 30px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 30px;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ve-muted);
  margin: 0;
}

.faq-footer-cta {
  margin-top: 50px;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.faq-cta-link {
  color: var(--ve-purple);
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.faq-cta-link:hover {
  gap: 12px;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 40px 0;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-question span {
    font-size: 16px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding-bottom: 20px;
  }
}

.it-ecosystem {
  padding: 80px 0;
  background: #f8fafc;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  width: 100%;
  display: block;
}

.it-marquee-container {
  display: flex;
  flex-wrap: nowrap;
  gap: 100px;
  animation: marquee-scroll 40s linear infinite;
  width: max-content;
  align-items: center;
}

.it-marquee-item {
  font-size: 26px;
  font-weight: 800;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.4s ease;
  cursor: default;
  opacity: 0.5;
  flex-shrink: 0;
}

.it-marquee-item i {
  font-size: 34px;
  color: #94a3b8;
  transition: all 0.4s ease;
}

.it-marquee-item:hover {
  color: var(--ve-purple);
  opacity: 1;
  transform: translateY(-5px);
}

.it-marquee-item:hover i {
  color: var(--ve-purple);
  transform: scale(1.2);
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}