/* ===========================
   BASE / RESET
   =========================== */
html, body {
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: #ffffff;
  color: #666866;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===========================
   SHARED / REUSABLE
   =========================== */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-container--narrow {
  max-width: 600px;
  margin: 0 auto;
}

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header--sm {
  text-align: center;
  margin-bottom: 32px;
}

.section-header--md {
  text-align: center;
  margin-bottom: 50px;
}

.section-header--lg {
  text-align: center;
  margin-bottom: 64px;
}

/* Unified Section Badge (double-pill style) */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(89, 4, 130, 0.06), rgba(89, 4, 130, 0.02));
  border: 1px solid rgba(89, 4, 130, 0.08);
  border-radius: 100px;
  padding: 10px 24px;
  font-size: 12px;
  font-weight: 600;
  color: #590482;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 24px;
  box-shadow: 0 0 0 6px rgba(89, 4, 130, 0.03), 0 0 0 12px rgba(89, 4, 130, 0.015);
}

.section-badge svg {
  width: 16px;
  height: 16px;
  stroke: #590482;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* CTA badge variant (white on dark bg) */
.section-badge--dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.04), 0 0 0 12px rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
}

.section-badge--dark svg {
  stroke: rgba(255, 255, 255, 0.9);
}

.section-header--xl {
  text-align: center;
  margin-bottom: 72px;
}

.section-title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 600;
  color: #000000;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: clamp(14px, 2vw, 16px);
  color: #666866;
  margin: 0 auto;
  max-width: 600px;
}

.section-subtitle--wide {
  max-width: 600px;
}

.flex-center-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/* ===========================
   1. HERO SECTION
   =========================== */
.hero-section {
  padding: clamp(40px, 10vw, 50px) 20px;
  background-color: #ffffff;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.hero-left {
  flex: 1 1 500px;
  min-width: 0;
}

.hero-title {
  font-size: clamp(32px, 5vw, 45px);
  font-weight: 600;
  color: #000000;
  margin: 0 0 24px 0;
  line-height: 1.2;
}

.hero-description {
  font-size: clamp(14px, 2vw, 16px);
  color: #666866;
  margin-bottom: 32px;
  max-width: 600px;
}

.hero-btn {
  background-color: #590482;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-size: 16px;
}

.hero-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(89, 4, 130, 0.2);
}

.hero-right {
  flex: 1 1 500px;
  min-width: 0;
  position: relative;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* ===========================
   2. EXPERTISE SECTION
   =========================== */
.expertise-section {
  padding: clamp(40px, 10vw, 50px) 20px;
  background-color: #ffffff;
}

.expertise-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.expertise-title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 600;
  color: #000000;
  margin-bottom: 60px;
  line-height: 1.2;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.stat-card {
  background: #ffffff;
  border: 1px solid #590482;
  border-radius: 12px;
  padding: 10px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.stat-number {
  font-size: 32px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0px;
}

.stat-divider {
  height: 1px;
  background: #f2f2f2;
  margin-bottom: 20px;
}

.stat-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-icon-circle {
  width: 48px;
  height: 48px;
  background: #590482;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  line-height: 1.2;
}

/* ===========================
   3. MARKET ANALYSIS SECTION
   =========================== */
.market-section {
  padding: clamp(40px, 10vw, 50px) 20px;
  background-color: #fdfbff;
}

.market-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
}

.market-left {
  flex: 1 1 500px;
  min-width: 320px;
}

.market-right {
  flex: 1 1 500px;
  min-width: 320px;
}

.market-image {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.market-title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 600;
  color: #000000;
  margin: 0 0 24px 0;
  line-height: 1.2;
}

.market-description {
  font-size: clamp(14px, 2vw, 16px);
  color: #666866;
  margin-bottom: 32px;
}

.market-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.market-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: clamp(14px, 2vw, 16px);
  color: #666866;
}

.check-circle {
  width: 24px;
  height: 24px;
  background: #590482;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===========================
   4. FEATURES SECTION
   =========================== */
.features-section {
  padding: clamp(60px, 12vw, 60px) 20px;
  background: linear-gradient(180deg, #ffffff 0%, #faf5ff 100%);
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(89, 4, 130, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.features-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(89, 4, 130, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}


.features-heading {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 600;
  color: #0a0a0a;
  margin: 0 0 20px 0;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.features-heading span,
.gradient-text {
  background: linear-gradient(135deg, #590482, #8b2fc9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-subtitle {
  font-size: clamp(15px, 2vw, 17px);
  color: #6b7280;
  margin: 0 auto;
  max-width: 680px;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

@media (max-width: 960px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.feature-card {
  position: relative;
  padding: 36px 32px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: default;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #590482, #8b2fc9, #b668e8);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  border-color: rgba(89, 4, 130, 0.15);
  box-shadow: 0 20px 60px rgba(89, 4, 130, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
  transform: translateY(-6px);
}

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

.feature-card:hover .feature-icon-wrap {
  background: linear-gradient(135deg, #590482, #7b1fa2);
  transform: scale(1.05);
}

.feature-card:hover .feature-icon-wrap svg {
  stroke: #ffffff;
}

.feature-card:hover .feature-icon-wrap img {
  filter: brightness(0) invert(1);
}

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(89, 4, 130, 0.08), rgba(89, 4, 130, 0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.feature-icon-wrap svg,
.feature-icon-wrap img {
  width: 26px;
  height: 26px;
  stroke: #590482;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.4s ease;
  object-fit: contain;
}

.feature-card-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(89, 4, 130, 0.12);
  letter-spacing: 0.5px;
}

.feature-card h3 {
  font-size: clamp(18px, 2.5vw, 20px);
  font-weight: 600;
  color: #0a0a0a;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.feature-card p {
  font-size: 15px;
  color: #6b7280;
  margin: 0;
  line-height: 1.65;
}

/* ===========================
   5. BENEFITS SECTION
   =========================== */
.benefits-section {
  padding: clamp(40px, 10vw, 80px) 20px;
  background-color: #fdfbff;
  overflow: hidden;
}

.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
}

.benefits-left {
  flex: 1.5 1 500px;
  min-width: 320px;
}

.benefits-title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 600;
  color: #000000;
  margin: 0 0 24px 0;
  line-height: 1.2;
}

.benefits-description {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
  color: #666;
  font-size: 15px;
}

.industry-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s;
}

.industry-card:hover {
  border-color: #590482;
  transform: translateY(-4px);
}

.industry-card-label {
  font-size: 14px;
  font-weight: 600;
  color: #000000;
}

/* Benefits Right / Mockup */
.benefits-right {
  flex: 1 1 400px;
  min-width: 320px;
  position: relative;
  text-align: center;
}

.live-indicator {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  background: #ff0000;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
  animation: live-pulse 2s infinite;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}

.mockup-image {
  width: 100%;
  height: auto;
  max-width: 450px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 30px 60px rgba(89, 4, 130, 0.15));
}

.success-badge {
  position: absolute;
  bottom: 15%;
  left: 10%;
  background: #ffffff;
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #f0f0f0;
  animation: float-badge 3s ease-in-out infinite;
}

.success-badge-amount {
  font-size: 18px;
  font-weight: 600;
  color: #590482;
}

.success-badge-label {
  font-size: 10px;
  color: #666866;
  font-weight: 600;
}

.bg-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: #590482;
  opacity: 0.05;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
}

@keyframes live-pulse {
  0% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translateX(-50%) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
}

@keyframes float-badge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ===========================
   6. PROCESS SECTION
   =========================== */
.process-section {
  padding: clamp(40px, 8vw, 50px) 20px;
  background-color: #ffffff;
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.process-title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 600;
  color: #000000;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.process-subtitle {
  font-size: clamp(14px, 2vw, 16px);
  color: #666866;
  margin: 0 auto;
  max-width: 600px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px 24px;
  position: relative;
  z-index: 1;
}

.step-card {
  background: #ffffff;
  padding: 40px 24px 24px;
  border-radius: 16px;
  border: 1px solid #f0f0f0;
  position: relative;
  transition: all 0.3s;
  cursor: pointer;
}

.step-card:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.04);
  border-color: #590482;
}

.step-card:hover .step-num {
  background: #590482;
  color: #ffffff;
}

.step-num {
  position: absolute;
  top: -22px;
  left: 24px;
  width: 44px;
  height: 44px;
  background: #ffffff;
  color: #000000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
  transition: 0.3s;
  border: 1px solid #f0f0f0;
}

.step-card-title {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 12px;
}

.step-card-text {
  font-size: 14px;
  color: #666866;
  margin: 0;
  line-height: 1.6;
}

/* ===========================
   11. REVENUE SECTION
   =========================== */
.revenue-section {
  padding: clamp(60px, 10vw, 50px) 20px;
  background-color: #ffffff;
}

.revenue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.revenue-card {
  text-align: center;
  padding: 20px;
  transition: all 0.3s;
  cursor: pointer;
}

.revenue-card:hover {
  transform: translateY(-10px);
}

.revenue-icon-box {
  width: 80px;
  height: 80px;
  background: #ffffff;
  border: 1px solid #590482;
  border-radius: 24px 24px 0 24px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(89, 4, 130, 0.1);
}

.revenue-card-title {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 12px;
}

.revenue-card-text {
  font-size: 14px;
  color: #666866;
  margin: 0;
  line-height: 1.6;
}

/* ===========================
   12. FEATURES SUITE SECTION
   =========================== */
.features-suite-section {
  padding: clamp(60px, 10vw, 50px) 20px;
  background-color: #fdfbff;
}

.tab-container {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 24px;
  font-weight: 600;
  font-family: inherit;
  border-radius: 50px;
  border: 2px solid #590482;
  background-color: transparent;
  color: #590482;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tab-btn--active {
  background-color: #590482 !important;
  color: #ffffff !important;
  border-color: #590482 !important;
}

.tab-btn--active svg {
  stroke: #ffffff !important;
}

.tab-pane {
  display: none;
  flex-direction: column;
  gap: 40px;
}

.tab-pane--active {
  display: flex !important;
}

.tab-pane-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.tab-pane-header .section-badge {
  margin-bottom: 16px;
}

.tab-pane-header .section-title {
  margin-bottom: 12px;
}

.tab-pane-header .section-subtitle {
  margin-bottom: 0;
}

.tab-pane-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: center;
}

.suite-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.suite-feature-title {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.suite-feature-text {
  font-size: 13px;
  color: #666866;
  margin: 0;
  line-height: 1.5;
}

.tab-image {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* ===========================
   13. BESPOKE SOLUTION
   =========================== */
.bespoke-section {
  padding: 12px 20px;
  background-color: #ffffff;
}

.bespoke-banner {
  max-width: 1200px;
  margin: 0 auto;
  background-color:#590482;
  background-size: cover;
  background-position: center;
  border-radius: 40px;
  padding: 20px 20px;
  text-align: center;
  color: #ffffff;
}

.bespoke-title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.bespoke-text {
  font-size: clamp(14px, 2vw, 18px);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  opacity: 0.9;
}

.bespoke-btn {
  background-color: #ffffff;
  color: #590482;
  padding: 12px 12px 12px 32px;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.bespoke-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.bespoke-arrow-circle {
  width: 40px;
  height: 40px;
  background-color: #590482;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===========================
   14. AI FEATURES SECTION
   =========================== */
.ai-section {
  padding: clamp(60px, 10vw, 50px) 20px;
  background-color: #ffffff;
}

.ai-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.ai-card {
  background: #ffffff;
  padding: 20px 20px;
  border-radius: 20px;
  border: 1px solid #f0f0f0;
  transition: all 0.3s;
  text-align: center;
  cursor: pointer;
}

.ai-card:hover {
  transform: translateY(-10px);
  border-color: #590482;
  box-shadow: 0 15px 30px rgba(89, 4, 130, 0.08);
}

.ai-icon-box {
  width: 64px;
  height: 64px;
  background: rgba(89, 4, 130, 0.05);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.ai-card-title {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 12px;
}

.ai-card-text {
  font-size: 14px;
  color: #666866;
  line-height: 1.6;
  margin: 0;
}

/* ===========================
   15. WHY CHOOSE US SECTION
   =========================== */
.why-section {
  padding: clamp(60px, 10vw, 50px) 20px;
  background: linear-gradient(180deg, #ffffff 0%, #faf5ff 100%);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(89, 4, 130, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.why-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}


.why-title {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 600;
  color: #0a0a0a;
  margin: 0 0 20px 0;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.why-subtitle {
  font-size: clamp(15px, 2vw, 17px);
  color: #6b7280;
  margin: 0 auto;
  max-width: 600px;
  line-height: 1.7;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

@media (max-width: 860px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.reason-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 20px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.reason-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #590482, #8b2fc9);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.reason-card:hover {
  border-color: rgba(89, 4, 130, 0.12);
  box-shadow: 0 16px 48px rgba(89, 4, 130, 0.08), 0 4px 12px rgba(0, 0, 0, 0.03);
  transform: translateY(-4px);
}

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

.reason-card:hover .reason-icon {
  background: linear-gradient(135deg, #590482, #7b1fa2);
  transform: scale(1.05);
}

.reason-card:hover .reason-icon img {
  filter: brightness(0) invert(1);
}

.reason-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: linear-gradient(135deg, rgba(89, 4, 130, 0.08), rgba(89, 4, 130, 0.04));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.reason-card-title {
  font-size: 18px;
  font-weight: 600;
  color: #0a0a0a;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.reason-card-text {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.65;
  margin: 0;
}

/* ===========================
   15.6. TECH STACK SECTION
   =========================== */
.tech-section {
  padding: clamp(60px, 10vw, 50px) 20px;
  background: linear-gradient(180deg, #f8f5ff 0%, #f0ecf5 100%);
  position: relative;
  overflow: hidden;
}

.tech-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(89, 4, 130, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.tech-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}


.tech-title {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 600;
  color: #0a0a0a;
  margin: 0 0 20px 0;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.tech-subtitle {
  font-size: clamp(15px, 2vw, 17px);
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

@media (max-width: 960px) {
  .tech-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 600px) {
  .tech-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

@media (max-width: 400px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tech-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 28px 16px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: default;
}

.tech-card:hover {
  transform: translateY(-5px);
  border-color: rgba(89, 4, 130, 0.15);
  box-shadow: 0 16px 40px rgba(89, 4, 130, 0.08), 0 4px 12px rgba(0, 0, 0, 0.03);
}

.tech-card:hover .tech-icon {
  transform: scale(1.1);
}

.tech-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.tech-label {
  font-weight: 600;
  color: #0a0a0a;
  margin: 0;
  font-size: 14px;
}

/* ===========================
   15.7. APP INTERFACES SLIDER
   =========================== */
.slider-section {
  padding: clamp(60px, 10vw, 50px) 20px;
  background-color: #ffffff;
}

.slider-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  color: #000000;
  margin-bottom: 15px;
  line-height: 1.2;
}

.slider-subtitle {
  font-size: clamp(15px, 2vw, 17px);
  color: #666866;
  max-width: 780px;
  margin: 0 auto;
}

.slider-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0 0 50px;
  user-select: none;
}

.slider-track {
  display: flex;
  gap: 20px;
  will-change: transform;
  animation: infiniteScroll 25s linear infinite;
}

.slider-track:hover {
  animation-play-state: paused;
}

@keyframes infiniteScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.slider-track.grabbing {
  animation-play-state: paused;
  cursor: grabbing;
}

.phone-slide {
  flex: 0 0 calc(25% - 15px);
  min-width: 220px;
}

.phone-slide-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: none;
  display: block;
}

@media (max-width: 768px) {
  .phone-slide {
    flex: 0 0 calc(40% - 10px);
    min-width: 180px;
  }
  @keyframes infiniteScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
}

@media (max-width: 480px) {
  .phone-slide {
    flex: 0 0 calc(60%);
    min-width: 200px;
  }
}

/* ===========================
   15.5. WHITE LABEL SECTION
   =========================== */
.white-label-section {
  padding: clamp(60px, 10vw, 50px) 20px;
  background: linear-gradient(180deg, #f9f5ff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.white-label-section::before {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(89, 4, 130, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.white-label-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}


.white-label-title {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 600;
  color: #0a0a0a;
  margin: 0 0 20px 0;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.white-label-subtitle {
  font-size: clamp(15px, 2vw, 17px);
  color: #6b7280;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

.white-label-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

@media (max-width: 960px) {
  .white-label-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.service-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  padding: 36px 32px 32px;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #590482, #8b2fc9, #b668e8);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  border-color: rgba(89, 4, 130, 0.15);
  box-shadow: 0 20px 60px rgba(89, 4, 130, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
  transform: translateY(-6px);
}

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

.service-card:hover .service-card-icon {
  background: linear-gradient(135deg, #590482, #7b1fa2);
  transform: scale(1.05);
}

.service-card:hover .service-card-icon img {
  filter: brightness(0) invert(1);
}

.service-card-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(89, 4, 130, 0.1);
  letter-spacing: 0.5px;
}

.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(89, 4, 130, 0.08), rgba(89, 4, 130, 0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-card-title {
  font-size: clamp(17px, 2.5vw, 19px);
  font-weight: 600;
  color: #0a0a0a;
  margin: 0 0 12px;
  line-height: 1.3;
}

.service-card-text {
  font-size: 14.5px;
  color: #6b7280;
  margin: 0 0 20px;
  line-height: 1.65;
}

.service-card-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  background: rgba(89, 4, 130, 0.05);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: #590482;
  letter-spacing: 0.3px;
}

/* ===========================
   16. FAQ SECTION
   =========================== */
.faq-section {
  padding: clamp(60px, 10vw, 50px) 20px;
  background-color: #ffffff;
}

.faq-title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 600;
  color: #000000;
  text-align: center;
  margin-bottom: 60px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 0 60px;
}

.faq-item {
  border-bottom: 1px solid #f0f0f0;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  cursor: pointer;
}

.faq-question {
  font-size: 17px;
  font-weight: 600;
  color: #000000;
  margin: 0;
  padding-right: 20px;
}

.faq-icon {
  font-size: 24px;
  color: #590482;
  font-weight: 400;
  min-width: 20px;
  text-align: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-out;
}

.faq-answer-text {
  font-size: 14px;
  color: #666866;
  padding-bottom: 24px;
  margin: 0;
  line-height: 1.6;
}

/* ===========================
   17. SECURITY & CONTACT SECTION
   =========================== */
.security-section {
  padding: clamp(60px, 10vw, 50px) 20px;
  background-color: #ffffff;
}

.security-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
}

.security-left {
  flex: 1 1 500px;
  min-width: 320px;
}

.security-title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 600;
  color: #000000;
  margin-bottom: 24px;
}

.security-description {
  color: #666866;
  font-size: 16px;
  margin-bottom: 32px;
  font-weight: 300;

}

.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.security-item-label {
  font-weight: 600;
  color: #000000;
  margin-bottom: 8px;
}

.security-item-text {
  font-size: 13px;
  margin: 0;
}

.contact-form-box {
  flex: 1 1 400px;
  min-width: 320px;
  background: #faf9ff;
  border-radius: 24px;
  padding: 48px;
  border: 1px solid #f0f0f0;
}

.contact-form-title {
  font-size: 24px;
  font-weight: 600;
  color: #590482;
  margin-bottom: 24px;
}

.contact-input {
  width: 100%;
  padding: 14px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 16px;
  outline: none;
  font-family: inherit;
  box-sizing: border-box;
}

.contact-textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 24px;
  outline: none;
  font-family: inherit;
  min-height: 120px;
  box-sizing: border-box;
}

.contact-submit-btn {
  width: 100%;
  background: #590482;
  color: #ffffff;
  padding: 16px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.contact-submit-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(89, 4, 130, 0.15);
}

/* ===========================
   18. FINAL CTA SECTION
   =========================== */
.cta-section {
  padding: clamp(40px, 8vw, 60px) 20px;
  background-color: #ffffff;
}

.cta-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1a0028 0%, #2d0845 30%, #590482 60%, #7b1fa2 100%);
  border-radius: 32px;
  padding: clamp(30px, 10vw, 30px) clamp(30px, 10vw, 30px);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  pointer-events: none;
}

.cta-glow--left {
  top: -100px;
  left: -100px;
  background: #8b2fc9;
}

.cta-glow--right {
  bottom: -100px;
  right: -100px;
  background: #b668e8;
}

.cta-content {
  position: relative;
  z-index: 1;
}


.cta-title {
  font-size: clamp(25px, 10vw, 25px);
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 20px 0;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.cta-title .gradient-text {
  background: linear-gradient(135deg, #d4a5ff, #f0d0ff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-subtitle {
  font-size: clamp(15px, 2vw, 17px);
  color: rgba(255, 255, 255, 0.7);
  margin: 0 auto 40px;
  max-width: 600px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.cta-btn-primary {
  background: #ffffff;
  color: #590482;
  padding: 16px 32px;
  border-radius: 14px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  font-size: 16px;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cta-btn-primary svg {
  width: 20px;
  height: 20px;
  stroke: #590482;
  transition: transform 0.3s ease;
}

.cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.cta-btn-primary:hover svg {
  transform: scale(1.15);
}

.cta-btn-secondary {
  background: transparent;
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  font-size: 16px;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-btn-secondary svg {
  width: 18px;
  height: 18px;
  stroke: #ffffff;
  transition: transform 0.3s ease;
}

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

.cta-btn-secondary:hover svg {
  transform: translateX(4px);
}

.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.cta-trust-stars {
  display: flex;
  gap: 2px;
}

.cta-trust-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.cta-trust-text strong {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 600px) {
  .cta-wrapper {
    border-radius: 24px;
  }
  .cta-trust {
    flex-direction: column;
    gap: 10px;
  }
}

/* ===========================
   PAGE LOADER
   =========================== */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-spinner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid rgba(89, 4, 130, 0.1);
  border-top-color: #590482;
  animation: loaderSpin 0.7s linear infinite;
}

.loader-text {
  font-size: 14px;
  font-weight: 600;
  color: #590482;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  animation: loaderPulse 1.2s ease-in-out infinite;
}

@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ===========================
   SCROLL REVEAL ANIMATIONS
   =========================== */
.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.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

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

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

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

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered children delays */
.stagger-children > *:nth-child(1) { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.5s; }
.stagger-children > *:nth-child(7) { transition-delay: 0.6s; }
.stagger-children > *:nth-child(8) { transition-delay: 0.7s; }
.stagger-children > *:nth-child(9) { transition-delay: 0.8s; }
.stagger-children > *:nth-child(10) { transition-delay: 0.9s; }
.stagger-children > *:nth-child(11) { transition-delay: 1.0s; }
.stagger-children > *:nth-child(12) { transition-delay: 1.1s; }

/* ===========================
   HERO ENTRANCE ANIMATIONS
   =========================== */
.hero-title {
  animation: heroSlideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero-description {
  animation: heroSlideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.hero-btn {
  animation: heroSlideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
}

.hero-right {
  animation: heroFadeScale 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

@keyframes heroSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeScale {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ===========================
   ENHANCED HOVER MICRO-INTERACTIONS
   =========================== */

/* Buttons - press effect */
.hero-btn:active,
.cta-btn-primary:active,
.cta-btn-secondary:active,
.bespoke-btn:active,
.contact-btn:active {
  transform: scale(0.97);
  transition-duration: 0.1s;
}

/* Badge subtle float */
.section-badge {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 8px rgba(89, 4, 130, 0.04), 0 0 0 16px rgba(89, 4, 130, 0.02);
}

/* Stat cards count-up feel */
.stat-card {
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(89, 4, 130, 0.1);
}

.stat-card:hover .stat-number {
  transform: scale(1.08);
  transition: transform 0.3s ease;
}

/* Industry cards ripple-like */
.industry-card {
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.industry-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 24px rgba(89, 4, 130, 0.08);
}

/* FAQ smooth icon rotation */
.faq-icon {
  transition: transform 0.3s ease;
  display: inline-block;
}

.faq-header:hover .faq-icon {
  transform: scale(1.2);
}

/* Tab buttons */
.tab-btn {
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.tab-btn:hover:not(.tab-btn--active) {
  background-color: rgba(89, 4, 130, 0.05);
  transform: translateY(-2px);
}

/* Smooth image hover zoom */
.hero-image,
.market-image,
.mockup-image,
.suite-image {
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-image:hover,
.market-image:hover,
.suite-image:hover {
  transform: scale(1.02);
}

/* Gradient text shimmer on hover */
.gradient-text {
  background-size: 200% auto;
  transition: background-position 0.5s ease;
}

h1:hover .gradient-text,
h2:hover .gradient-text {
  background-position: right center;
}

/* ===========================
   REDUCED MOTION PREFERENCE
   =========================== */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-title, .hero-description, .hero-btn, .hero-right {
    animation: none;
  }
  .page-loader {
    display: none;
  }
  .slider-track {
    animation: none;
  }
}


/* SECTION BACKGROUND */
.of-features-section {
  padding: 100px 20px;
  background: #0b0b0c; /* deep black like your UI */
  color: #fff;
}

/* CONTAINER */
.of-features-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.of-section-header {
  margin-bottom: 60px;
  text-align: center;
}

.of-badge {
  display: inline-block;
  padding: 6px 16px;
  background: #1a1a1c;
  border-radius: 999px;
  font-size: 12px;
  color: #cfcfcf;
  margin-bottom: 18px;
}

.of-heading {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #eaeaea;
}

.of-heading span {
  color: #ff4d6d; /* pink highlight */
}

.of-subtitle {
  color: #9ca3af;
  max-width: 650px;
  margin: auto;
  font-size: 16px;
  line-height: 1.6;
}

/* GRID */
.of-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: stretch;
}

/* CARD */
.of-feature-card {
  background: linear-gradient(145deg, #141416, #1c1c1f);
  padding: 30px;
  border-radius: 18px;
  position: relative;
  transition: all 0.35s ease;
  border: 1px solid rgba(255,255,255,0.04);
  display: flex;
  flex-direction: column;
}

/* HOVER (very subtle like your UI) */
.of-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.08);
  background: linear-gradient(145deg, #18181b, #222225);
}

/* NUMBER (top right faded) */
.of-feature-number {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 14px;
  color: #6b7280;
}

/* ICON */
.of-feature-icon img {
  width: 26px;
  margin-bottom: 18px;
  opacity: 0.9;
}

/* TITLE */
.of-feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #f3f4f6;
}

/* DESCRIPTION */
.of-feature-card p {
  font-size: 15px;
  color: #9ca3af;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .of-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .of-heading {
    font-size: 32px;
  }
}


.features-gridone {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: stretch;
}

@media (max-width: 1024px) {
  .features-gridone {
    grid-template-columns: repeat(2, 1fr);
  }
}

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






/* SECTION */
.benefits-section {
  padding: 60px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* DESCRIPTION — defined above in base section */

/* GRID */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch; /* FIX */
}

/* CARD */
.card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 20px;
  transition: 0.3s ease;

  /* FIXES */
  height: auto; 
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
}

/* HEADER */
.card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 0px;
}

/* ICON BOX */
.icon-box {
  width: 50px;
  height: 50px;
  background: rgba(89, 4, 130, 0.08); /* brand purple tint */
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-box img {
  width: 22px;
  height: 22px;
}

/* TITLE */
.card h3 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
  line-height: 1.3;
}

/* TEXT */
.card-text {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
  padding-left: 64px;
}

/* HOVER EFFECT */
.card:hover {
  transform: translateY(-5px);
  border-color: #590482; /* primary purple */
  box-shadow: 0 10px 30px rgba(89, 4, 130, 0.1);
  z-index: 1; /* prevents overlap cutting */
}

/* 🔥 CRITICAL FIX (prevents row overlapping) */
.category-grid > * {
  margin: 0;
  top: auto;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .category-grid {
    grid-template-columns: 1fr;
  }

  .card-text {
    padding-left: 0;
  }
}
/* ==========================================================================
   REVENUE MODELS SECTION
   ========================================================================== */

.revenue-models-section {
  padding: 50px 20px;
  background: #fdfbff; /* light themed to alternate */
}

.revenue-models-section .section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.revenue-top-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 50px;
}

/* Mockup Side */
.revenue-mockup-side {
  flex: 1;
}

.mockup-composite {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
}

.main-mockup {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(89, 4, 130, 0.15);
}

.floating-badge {
  position: absolute;
  padding: 12px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.revenue-badge {
  top: 20%;
  right: -30px;
}

.badge-amount {
  font-size: 20px;
  font-weight: 600;
  color: #590482;
}

.badge-label {
  font-size: 11px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.live-badge {
  bottom: 15%;
  left: -20px;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: #ff4d6d;
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
}

/* Right: 4 items side-by-side with mockup */
.revenue-items-right {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Bottom: 2 items spanning below */
.revenue-bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 25px;
}

.revenue-model-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(89, 4, 130, 0.05);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.revenue-model-item:hover {
  transform: translateX(10px);
  border-color: #590482;
  box-shadow: 0 15px 30px rgba(89, 4, 130, 0.08);
}

.model-icon-wrap {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #590482, #8b2fc9);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.model-icon-wrap img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.model-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  margin-top: 0px;
  color: #1a1a1a;
}

.model-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}


/* Animations */
@keyframes float-ver {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.float-animation { animation: float-ver 4s ease-in-out infinite; }
.float-animation-slow { animation: float-ver 6s ease-in-out infinite; }

/* Responsive Revenue models */
@media (max-width: 1024px) {
  .revenue-top-row {
    flex-direction: column;
    gap: 40px;
  }
  
  .revenue-bottom-row {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
  
  .revenue-mockup-side {
    order: 2;
  }
  
  .revenue-items-right {
    order: 1;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .revenue-model-item {
    flex-direction: column;
    padding: 20px;
  }
  
  .revenue-badge {
    right: 0;
  }
}

/* ==========================================================================
   PROFITABILITY SECTION
   ========================================================================== */

.profitability-section {
  padding: 100px 20px;
  background: #ffffff;
}

.profitability-content {
  max-width: 1000px;
  margin: 0 auto;
}

.profitability-intro {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 40px;
  text-align: center;
}

.highlight-text {
  color: #590482;
  font-weight: 600;
}

.profitability-section {
  padding: 40px 20px;
  background-color: #ffffff;
}

#profitability .section-header--lg {
  margin-bottom: 25px;
}

#profitability .section-subtitle {
  margin-bottom: 20px;
}

.profit-compact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 30px auto 40px;
  position: relative;
  padding-left: 20px;
}

.profit-compact-list::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, #590482, rgba(89, 4, 130, 0.1));
}

.profit-item {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.profit-index-box {
  position: relative;
  flex-shrink: 0;
  width: 32px;
}

.profit-dot {
  position: absolute;
  left: -24px;
  top: 8px;
  width: 10px;
  height: 10px;
  background: #590482;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(89, 4, 130, 0.4);
}

.profit-number {
  font-size: 16px;
  font-weight: 600;
  color: rgba(89, 4, 130, 0.3);
}

.profit-content h3 {
  font-size: 19px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.profit-content p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

/* Minimalist Advantage Callout - Compact */
.xpert-advantage-minimal {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 25px;
  background: rgba(89, 4, 130, 0.03);
  border-left: 4px solid #590482;
  border-radius: 0 16px 16px 0;
}

.advantage-header-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.advantage-icon-mini {
  color: #590482;
  flex-shrink: 0;
}

.advantage-icon-mini svg {
  width: 18px;
  height: 18px;
}

.advantage-header-mini h4 {
  font-size: 17px;
  font-weight: 600;
  color: #590482;
  margin: 0;
}

.xpert-advantage-minimal p {
  font-size: 14.5px;
  color: #444;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .profit-compact-list {
    padding-left: 15px;
  }
  
  .profit-item {
    gap: 15px;
  }
}




/* ==========================================================================
   TECHNOLOGY STACK REFRESH
   ========================================================================== */

.tech-section {
  padding: 50px 20px;
  background: #fdfbff; /* light themed to alternate */
}

.tech-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 50px auto 0;
}

.tech-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 25px;
  background: #ffffff;
  border: 1px solid rgba(89, 4, 130, 0.05);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(89, 4, 130, 0.03);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tech-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(89, 4, 130, 0.08);
  border-color: rgba(89, 4, 130, 0.2);
}

.tech-feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(89, 4, 130, 0.1), rgba(89, 4, 130, 0.05));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tech-feature-icon img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.tech-feature-card:hover .tech-feature-icon img {
  transform: scale(1.1);
}

.tech-feature-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
  margin-top: 0px;
}

.tech-feature-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Tech Stack */
@media (max-width: 991px) {
  .tech-feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .tech-feature-card {
    flex-direction: column;
    padding: 25px;
    text-align: center;
  }
  
  .tech-feature-icon {
    margin: 0 auto;
  }
}





.related-clone-section {
  background: #FFFFFF;
  padding: 60px 0;
}

.section-tag {
  color: #ff4d00;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-title {
  color: #000000;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-desc {
  color: #666866;
  font-size: 16px;
  margin-bottom: 30px;
}

.clone-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #ddd;
}

.clone-grid a {
  padding: 15px;
  border: 1px solid #ddd;
  color: #590482;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.clone-grid a:hover {
  background: #f8f5fc;
  color: #590482;
}






.related-clone-split {
  background: #FFFFFF;
  padding: 60px 20px;
}

.related-clone-split .container {
  max-width: 1200px;
  margin: auto;
}

/* 🔥 ALIGN HEADING WITH LINKS */
.top-row {
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 40px;
  align-items: center;
}

/* LEFT */
.left-content h2 {
  color: #000;
  font-size: 30px;
  font-weight: 700;
  margin: 0;
}

/* RIGHT LINKS */
.right-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.right-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.right-links li {
  margin-bottom: 12px;
}

.right-links a {
  text-decoration: none;
  color: #666866;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  transition: 0.3s;
}

/* arrow */
.right-links a::before {
  content: ">";
  margin-right: 8px;
  color: #590482;
  font-weight: bold;
}

/* hover */
.right-links a:hover {
  color: #590482;
  padding-left: 5px;
}

/* bottom */
.bottom-row {
  border-top: 1px solid #e5e5e5;
  margin-top: 35px;
  padding-top: 15px;
}

.bottom-row p {
  margin: 0;
  font-size: 14px;
  color: #666866;
  text-align: center;
}

.bottom-row a {
  color: #590482;
  text-decoration: none;
  font-weight: 500;
}

.revenue-card.reveal.visible {
    border: 2px solid #590482;
    border-radius: 25px;
}






  /* ===== Contact Section Styles ===== */
  .contact-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  }

  .contact-section * {
    box-sizing: border-box;
  }

  .contact-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
  }

  .contact-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
  }

  .contact-title {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
    font-size: 24px;
    font-weight: 600;
    color: #212529;
    padding: 0 15px;
  }

  /* Left Column - Appointment Card */
  .contact-left {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 15px;
    display: flex;
    align-items: center;
  }

  .appointment-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .appointment-icon {
    font-size: 40px;
    color: #590482;
    margin-bottom: 15px;
    width: 48px;
    height: 48px;
  }

  .appointment-icon svg {
    width: 48px;
    height: 48px;
    stroke: #590482;
    fill: none;
    stroke-width: 1.5;
  }

  .appointment-card h5 {
    font-size: 18px;
    font-weight: 600;
    color: #212529;
    margin: 0 0 15px 0;
  }

  .appointment-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #6c757d;
    margin: 0 0 20px 0;
  }

  .btn-request {
    display: inline-block;
    padding: 10px 28px;
    background-color: #590482;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: fit-content;
  }

  .btn-request:hover {
    background-color: #590482;
;
    color: #fff;
  }

  /* Right Column - Form */
  .contact-right {
    flex: 0 0 66.666%;
    max-width: 66.666%;
    padding: 0 15px;
  }

  .form-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
    padding: 40px;
  }

  .form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
  }

  .form-col-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 10px;
  }

  .form-col-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 10px;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #212529;
    margin-bottom: 8px;
  }

  .form-group label .required {
    color: #dc3545;
  }

  .input-wrapper {
    position: relative;
  }

  .input-wrapper .input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    z-index: 1;
    pointer-events: none;
  }

  .input-wrapper .input-icon svg {
    width: 16px;
    height: 16px;
    stroke: #6c757d;
    fill: none;
    stroke-width: 2;
  }

  .input-wrapper .textarea-icon {
    top: 18px;
    transform: none;
  }

  .form-input {
    width: 100%;
    padding: 10px 15px 10px 45px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 14px;
    color: #495057;
    background-color: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
  }

  .form-input:focus {
    border-color: #2f55d4;
    box-shadow: 0 0 0 3px rgba(47, 85, 212, 0.15);
  }

  .form-input::placeholder {
    color: #adb5bd;
  }

  textarea.form-input {
    resize: vertical;
    min-height: 120px;
  }

  /* Honeypot field */
  .hidden-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
  }

  /* reCAPTCHA */
  .recaptcha-wrapper {
    margin-bottom: 20px;
    padding: 0 10px;
  }

  /* Submit Button */
  .btn-submit {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background-color: #590482;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .btn-submit:hover {
    background-color: #590482;
  }

  /* Responsive */
  @media (max-width: 991px) {
    .contact-left {
      flex: 0 0 50%;
      max-width: 50%;
    }
    .contact-right {
      flex: 0 0 50%;
      max-width: 50%;
    }
  }

  @media (max-width: 767px) {
    .contact-section {
      padding: 50px 0;
    }
    .contact-left {
      flex: 0 0 100%;
      max-width: 100%;
      margin-bottom: 30px;
    }
    .contact-right {
      flex: 0 0 100%;
      max-width: 100%;
    }
    .form-col-6 {
      flex: 0 0 100%;
      max-width: 100%;
    }
    .form-card {
      padding: 25px;
    }
  }

/* ===========================
   HEADER SECTION
   =========================== */

.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 16px 20px;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  font-size: 24px;
  font-weight: 800;
  color: #000;
  text-decoration: none;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 16px;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  display: flex;
  align-items: center;
}

.nav-link:hover {
  color: #590482;
}

/* Dropdown */
.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 120px;
  padding: 0px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1001;
  margin-top: 8px;
}

.dropdown-item {
  display: block;
  padding: 10px 14px;
  color: #590482;
  text-decoration: none;
  font-size: 12px;
  background: #faf5ff;
  transition: background 0.2s, color 0.2s;
  border-radius: 10px;
}

.dropdown-item:hover {
  background: #faf5ff;
  color: #590482;
}

/* AI Badge Menu Item */
.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(46, 122, 255, 0.1), rgba(121, 40, 202, 0.15));
  color: #2e7aff;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.ai-badge svg {
  fill: #2e7aff;
}

.nav-link.ai-nav-link:hover .ai-badge {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 122, 255, 0.15);
  background: linear-gradient(135deg, rgba(46, 122, 255, 0.15), rgba(121, 40, 202, 0.2));
}

/* ===========================
   MOBILE NAVIGATION
   =========================== */
@media (max-width: 768px) {
  .main-header {
    padding: 12px 16px;
    background: #ffffff !important;
    backdrop-filter: none !important;
  }
  .header-container {
    padding: 0;
  }
  .logo-img {
    height: 32px;
  }
  /* Hamburger */
  .mob-ham {
    display: block !important;
  }
  /* Nav panel off-screen */
  .main-nav {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    width: 280px !important;
    height: 100vh !important;
    background: #ffffff !important;
    padding: 70px 24px 24px !important;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15) !important;
    z-index: 9999 !important;
    overflow-y: auto !important;
    display: flex !important;
    flex-direction: column !important;
    transform: translateX(100%) !important;
    transition: transform 0.3s ease !important;
    backdrop-filter: none !important;
  }
  .main-nav.mob-open {
    transform: translateX(0) !important;
  }
  /* Close btn */
  .mob-cls {
    display: block !important;
  }
  /* Stack nav items */
  .nav-list {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0 !important;
    width: 100% !important;
  }
  .nav-item {
    width: 100% !important;
    border-bottom: 1px solid #f0f0f0 !important;
  }
  .nav-link {
    padding: 14px 0 !important;
    font-size: 16px !important;
    width: 100% !important;
  }
  .dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    margin: 0 0 8px !important;
    box-shadow: none !important;
  }
}

/* ===========================
   IMAGE FOOTER REDESIGN
   =========================== */
.image-footer {
  background: linear-gradient(180deg, rgba(89, 4, 130, 0.1) 0%, rgba(239, 239, 239, 1) 100%);
  color: #333333;
  padding: 60px 0 20px 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
}

.image-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.image-footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  .image-footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .image-footer-links {
    grid-template-columns: 1fr;
  }
}

.image-footer-col h4 {
  font-size: 18px;
  font-weight: 700;
  color: #222222;
  margin-bottom: 24px;
  padding-bottom: 8px;
  border-bottom: 2px solid #590482;
  display: inline-block;
}

.image-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.image-footer-col ul li {
  margin-bottom: 14px;
}

.image-footer-col ul li a {
  text-decoration: none;
  color: #333333;
  font-weight: 600;
  transition: color 0.3s;
}

.image-footer-col ul li a:hover {
  opacity: 0.7;
}

.image-footer-col ul li a.active {
  color: #590482;
  font-weight: 700;
}

.text-red {
  color: #590482;
}

.image-footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  color: #333333;
  font-weight: 500;
  line-height: 1.5;
}

.icon-primary {
  stroke: #590482;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.image-footer-divider {
  border: none;
  border-top: 1px solid #d1d1d1;
  margin: 0;
}

.image-footer-middle {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 30px 0;
  position: relative;
}

@media (max-width: 768px) {
  .image-footer-middle {
    flex-direction: column;
    gap: 20px;
  }
}

.image-footer-logo img {
  height: 48px;
  width: auto;
}

.image-footer-social {
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (max-width: 768px) {
  .image-footer-social {
    position: static;
  }
}

.follow-text {
  font-size: 16px;
  font-weight: 700;
  color: #222222;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #dcdcdc;
  background-color: #efefef;
  transition: background-color 0.3s, border-color 0.3s;
  text-decoration: none;
}

.social-icon:hover {
  background-color: #ffffff;
  border-color: #590482;
}

.image-footer-bottom {
  display: flex;
  align-items: center;
  padding: 30px 0;
  gap: 20px;
}

@media (max-width: 768px) {
  .image-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.image-footer-disclaimer {
  font-size: 13px;
  color: #555555;
  line-height: 1.6;
}

.copyright-text {
  margin-top: 10px;
  text-align: center;
  color: #666666;
}

/* ===========================
   RESPONSIVE — TABLET (768px)
   =========================== */
@media (max-width: 768px) {
  .hero-section {
    padding: 30px 16px;
  }

  .hero-container {
    flex-direction: column;
    gap: 32px;
  }

  .hero-left,
  .hero-right {
    flex: 1 1 100%;
    width: 100%;
  }

  .hero-title {
    font-size: clamp(26px, 6vw, 36px);
  }

  .hero-description {
    font-size: 14px;
  }

  .expertise-section,
  .features-section,
  .suite-section {
    padding: 40px 16px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .features-gridone {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .of-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .suite-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .suite-feature-grid {
    grid-template-columns: 1fr;
  }

  .tab-controls {
    flex-wrap: wrap;
    gap: 12px;
  }

  .tab-btn {
    padding: 10px 18px;
    font-size: 14px;
  }

  .image-footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* ===========================
   RESPONSIVE — MOBILE (480px)
   =========================== */
@media (max-width: 480px) {
  .hero-section {
    padding: 24px 14px;
  }

  .hero-title {
    font-size: clamp(22px, 7vw, 30px);
  }

  .hero-btn {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }

  .features-grid,
  .features-gridone,
  .of-features-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .category-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .feature-card {
    padding: 24px 20px;
  }

  .section-badge {
    font-size: 12px;
  }

  .expertise-title,
  .features-heading {
    font-size: clamp(22px, 6vw, 28px);
  }

  .tab-controls {
    gap: 8px;
  }

  .tab-btn {
    padding: 8px 14px;
    font-size: 13px;
  }

  .image-footer-links {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .image-footer-middle {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .tech-feature-grid {
    grid-template-columns: 1fr;
  }

  .tech-feature-card {
    flex-direction: column;
    text-align: center;
  }
}
