/* ==========================================================================
   KAUSHAL E-COMMERCE SOLUTIONS - DESIGN SYSTEM & STYLESHEET
   Author: Kaushal Ecom Solution Development Team
   Stack: Vanilla CSS3, Bootstrap 5 Grid/Components, Bootstrap Icons
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. GOOGLE FONTS & DESIGN TOKENS
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Color Palette - Inspired by Kaushal Ecom Logo */
  --primary: #3B0764;              /* Deep Royal Purple from Logo */
  --primary-hover: #290446;
  --primary-light: #0088DD;        /* Cyan Blue from Logo */
  --primary-soft: #F4E8FF;         /* Soft Purple Accent Tint */
  --secondary: #0088DD;            /* Cyan Blue */
  --accent-orange: #FF6B00;        /* Vivid Orange/Gold from Logo */
  --dark: #0F0919;                 /* Rich Dark Purple-Black */
  --dark-surface: #181024;
  --dark-border: #2A1D3B;
  --light-bg: #FAF8FF;             /* Light Lavender-White Tint */
  --white: #FFFFFF;
  --text-dark: #181024;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --border-color: #E5E7EB;
  --border-light: #EDE5F8;
  --accent-green: #10B981;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #3B0764 0%, #0088DD 100%);
  --gradient-btn: linear-gradient(135deg, #3B0764 0%, #0088DD 100%);
  --gradient-orange: linear-gradient(135deg, #FF6B00 0%, #FF9900 100%);
  --gradient-text: linear-gradient(135deg, #3B0764 0%, #0088DD 50%, #FF6B00 100%);
  --gradient-dark: linear-gradient(180deg, #181024 0%, #0F0919 100%);
  --gradient-card-hover: linear-gradient(180deg, #FFFFFF 0%, #FAF8FF 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(59, 7, 100, 0.05);
  --shadow-md: 0 8px 24px rgba(59, 7, 100, 0.1);
  --shadow-lg: 0 16px 40px rgba(59, 7, 100, 0.16);
  --shadow-dark: 0 16px 40px rgba(0, 0, 0, 0.4);

  /* Typography */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --drawer-transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  background-color: var(--light-bg);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.drawer-open {
  overflow: hidden !important;
  touch-action: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

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

img,
svg {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* Typography Utilities */
.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.825rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 50px;
  margin-bottom: 1rem;
  border: 1px solid rgba(91, 61, 245, 0.15);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 2.5rem auto;
}

img.logo-img {
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  vertical-align: middle;
}

.footer-logo-wrapper {
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  margin-bottom: 1rem;
}

.footer-logo-wrapper img.logo-img {
  height: 42px;
}

/* --------------------------------------------------------------------------
   3. BUTTONS & UI COMPONENTS
   -------------------------------------------------------------------------- */
.btn-primary-custom {
  background: var(--gradient-primary);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.85rem;
  border-radius: 50px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: 0 8px 20px rgba(91, 61, 245, 0.3);
  transition: var(--transition-normal);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #482be0 0%, #5B3DF5 100%);
  opacity: 0;
  z-index: -1;
  transition: var(--transition-fast);
}

.btn-primary-custom:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(91, 61, 245, 0.45);
}

.btn-primary-custom:hover::before {
  opacity: 1;
}

.btn-outline-custom {
  background: var(--white);
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.85rem;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: var(--transition-normal);
  cursor: pointer;
}

.btn-outline-custom:hover {
  background: var(--primary-soft);
  color: var(--primary);
  border-color: var(--primary-soft);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.85rem;
  border-radius: 50px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
  transition: var(--transition-normal);
}

.btn-whatsapp:hover {
  color: var(--white);
  background: #1ebc57;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
}

.btn-white-custom {
  background: var(--white);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.85rem 1.85rem;
  border-radius: 50px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: var(--transition-normal);
}

.btn-white-custom:hover {
  background: #F3F0FF;
  color: var(--primary-hover);
  transform: translateY(-3px);
}

/* Badge Cards */
.badge-pill-accent {
  background: #FFF4E5;
  color: #FF9900;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
}

.badge-pill-growth {
  background: #E6F4EA;
  color: #137333;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
}

.badge-pill-purple {
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
}

/* --------------------------------------------------------------------------
   4. HEADER & NAVBAR (DESKTOP)
   -------------------------------------------------------------------------- */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
  background: rgba(247, 245, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(91, 61, 245, 0.08);
  transition: var(--transition-normal);
  padding: 10px 0;
}

.main-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  padding: 8px 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text-dark);
  letter-spacing: -0.03em;
}

.brand-icon-box {
  width: 38px;
  height: 38px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(91, 61, 245, 0.3);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.desktop-nav .nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  padding: 0.4rem 0;
  position: relative;
  transition: var(--transition-fast);
}

.desktop-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-fast);
  border-radius: 2px;
}

.desktop-nav .nav-link:hover,
.desktop-nav .nav-link.active {
  color: var(--primary);
}

.desktop-nav .nav-link:hover::after,
.desktop-nav .nav-link.active::after {
  width: 100%;
}

/* Hamburger Toggle Button */
.hamburger-btn {
  display: none;
  background: var(--white);
  border: 1px solid var(--border-color);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.hamburger-btn:hover {
  background: var(--primary-soft);
  color: var(--primary);
  border-color: var(--primary-soft);
}

/* --------------------------------------------------------------------------
   5. MOBILE LEFT-SIDE SLIDE-IN NAVIGATION DRAWER (MANDATORY REQUIREMENT)
   -------------------------------------------------------------------------- */
.mobile-nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(17, 17, 17, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1080;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-nav-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 310px;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh;
  background: var(--white);
  z-index: 1090;
  transform: translateX(-100%);
  transition: var(--drawer-transition);
  display: flex;
  flex-direction: column;
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
}

.mobile-nav-drawer.active {
  transform: translateX(0);
}

.mobile-drawer-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-light);
  background: var(--light-bg);
}

.mobile-drawer-close {
  background: var(--white);
  border: 1px solid var(--border-color);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition-fast);
}

.mobile-drawer-close:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.mobile-drawer-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-dark);
  border-radius: 12px;
  transition: var(--transition-fast);
}

.mobile-nav-link i {
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: var(--primary-soft);
  color: var(--primary);
}

.mobile-nav-link:hover i,
.mobile-nav-link.active i {
  color: var(--primary);
  transform: translateX(4px);
}

.mobile-drawer-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.mobile-drawer-footer .contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.mobile-drawer-footer .contact-info div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  padding-top: 8.5rem;
  padding-bottom: 5rem;
  position: relative;
  background: radial-gradient(circle at 10% 20%, rgba(124, 77, 255, 0.08) 0%, rgba(247, 245, 255, 0) 50%),
    radial-gradient(circle at 90% 80%, rgba(91, 61, 245, 0.08) 0%, rgba(247, 245, 255, 0) 50%);
  overflow: hidden;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  background: var(--white);
  border: 1px solid rgba(91, 61, 245, 0.2);
  box-shadow: 0 4px 15px rgba(91, 61, 245, 0.06);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.marketplace-brands-ribbon {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(91, 61, 245, 0.1);
}

.marketplace-brands-ribbon span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.85rem;
}

.brand-tags-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  align-items: center;
}

.brand-tag {
  background: var(--white);
  padding: 0.35rem 0.85rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.825rem;
  color: var(--text-dark);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

/* Hero Graphic & Floating Badges */
.hero-illustration-box {
  position: relative;
  text-align: center;
  padding: 1rem;
}

.hero-main-img {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(91, 61, 245, 0.18));
  max-height: 480px;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

.floating-badge {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.6rem 1rem;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-dark);
  animation: floatBadge 5s ease-in-out infinite;
}

.floating-badge-1 {
  top: 10%;
  left: 0%;
  animation-delay: 0s;
}

.floating-badge-2 {
  top: 25%;
  right: -2%;
  animation-delay: 1.5s;
}

.floating-badge-3 {
  bottom: 20%;
  left: -4%;
  animation-delay: 3s;
}

.floating-badge-4 {
  bottom: 8%;
  right: 5%;
  animation-delay: 2s;
}

@keyframes floatBadge {

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

  50% {
    transform: translateY(-8px) scale(1.03);
  }
}

.floating-badge-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   7. STATISTICS SECTION (DARK SECTION - MANDATORY REQUIREMENT)
   -------------------------------------------------------------------------- */
.stats-section {
  background: var(--gradient-dark);
  color: var(--white);
  padding: 3.5rem 0;
  position: relative;
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}

.stat-card {
  text-align: center;
  padding: 1rem;
  position: relative;
}

.stat-number {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #FFFFFF 0%, #B8B5FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   8. MARKETPLACE SERVICES SECTION
   -------------------------------------------------------------------------- */
.services-section {
  padding: 5.5rem 0;
  background: var(--light-bg);
}

.service-card {
  background: var(--white);
  border-radius: 18px;
  padding: 1.8rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(91, 61, 245, 0.2);
}

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

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.service-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition-fast);
}

.service-card:hover .service-icon-box {
  background: var(--gradient-primary);
  color: var(--white);
}

.service-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text-dark);
}

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

.service-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition-fast);
}

.service-link i {
  transition: var(--transition-fast);
}

.service-card:hover .service-link i {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   9. CASE STUDIES / RESULTS SECTION
   -------------------------------------------------------------------------- */
.case-studies-section {
  padding: 5.5rem 0;
  background: var(--white);
}

.case-card {
  background: var(--light-bg);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(91, 61, 245, 0.2);
  background: var(--white);
}

.case-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.case-platform-tag {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--border-color);
  color: var(--text-dark);
}

.case-result-num {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.case-industry {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.case-desc {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

/* --------------------------------------------------------------------------
   10. PROCESS SECTION (ROAD TO 10X SCALE)
   -------------------------------------------------------------------------- */
.process-section {
  padding: 5.5rem 0;
  background: var(--light-bg);
}

.process-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.2rem 1.8rem;
  height: 100%;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  position: relative;
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(91, 61, 245, 0.25);
}

.process-number-badge {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--gradient-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 6px 16px rgba(91, 61, 245, 0.3);
}

.process-step-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.process-step-desc {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   11. WHY CHOOSE US (DIFFERENCE IS IN THE DETAILS)
   -------------------------------------------------------------------------- */
.why-us-section {
  padding: 5.5rem 0;
  background: var(--white);
}

.why-us-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.why-us-bullet-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.025rem;
  color: var(--text-dark);
}

.why-us-bullet-item i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.why-feature-box {
  background: var(--light-bg);
  border-radius: 18px;
  padding: 1.8rem;
  height: 100%;
  border: 1px solid var(--border-light);
  transition: var(--transition-normal);
}

.why-feature-box:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(91, 61, 245, 0.2);
}

.why-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.2rem;
}

.why-feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.why-feature-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   12. TESTIMONIALS CAROUSEL
   -------------------------------------------------------------------------- */
.testimonials-section {
  padding: 5.5rem 0;
  background: var(--light-bg);
  overflow: hidden;
}

.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.2rem;
  height: 100%;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0.5rem;
}

.testimonial-stars {
  color: #FFB800;
  font-size: 1rem;
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1.25rem;
}

.testimonial-quote {
  font-size: 0.975rem;
  color: var(--text-dark);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--primary-soft);
  border: 2px solid var(--primary-soft);
}

.author-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.author-role {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* Custom Carousel Controls */
.carousel-indicators-custom {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.carousel-indicators-custom button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(91, 61, 245, 0.2);
  border: none;
  transition: var(--transition-fast);
  cursor: pointer;
}

.carousel-indicators-custom button.active {
  width: 28px;
  border-radius: 10px;
  background: var(--primary);
}

/* --------------------------------------------------------------------------
   13. FINAL CTA BANNER
   -------------------------------------------------------------------------- */
.cta-banner-section {
  padding: 5rem 0;
  background: var(--white);
}

.cta-banner-card {
  background: var(--gradient-primary);
  border-radius: 28px;
  padding: 4rem 2rem;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-banner-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner-card::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -20%;
  width: 400px;
  height: 400px;
  background: rgba(0, 210, 255, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.cta-desc {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 2rem auto;
}

.cta-btn-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

/* --------------------------------------------------------------------------
   14. FOOTER
   -------------------------------------------------------------------------- */
.main-footer {
  background: var(--dark);
  color: var(--white);
  padding-top: 4.5rem;
  padding-bottom: 2rem;
  border-top: 1px solid var(--dark-border);
}

.footer-brand-desc {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.footer-social-links {
  display: flex;
  gap: 0.75rem;
}

.footer-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.footer-social-icon:hover {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-3px);
}

.footer-widget-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-link {
  color: var(--text-light);
  font-size: 0.9rem;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-link:hover {
  color: var(--primary-light);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
}

.footer-contact-item i {
  color: var(--primary-light);
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

.footer-bottom {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--dark-border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* --------------------------------------------------------------------------
   15. INNER PAGE HEADER HEROES (ABOUT & SERVICES)
   -------------------------------------------------------------------------- */
.inner-hero-section {
  padding-top: 9rem;
  padding-bottom: 4rem;
  background: radial-gradient(circle at 50% 0%, rgba(124, 77, 255, 0.12) 0%, rgba(247, 245, 255, 0) 70%);
  text-align: center;
}

.inner-hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.inner-hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   16. SCROLL REVEAL ANIMATIONS (IntersectionObserver)
   -------------------------------------------------------------------------- */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade {
  opacity: 0;
  transition: opacity 0.8s ease;
}

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

/* --------------------------------------------------------------------------
   17. MEDIA QUERIES (RESPONSIVENESS TESTED: 320, 375, 425, 768, 1024, 1366, 1440, 1920)
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .desktop-nav {
    display: none !important;
  }

  .hamburger-btn {
    display: flex !important;
  }

  .hero-section {
    padding-top: 7rem;
    padding-bottom: 3.5rem;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btn-group {
    justify-content: center;
  }

  .brand-tags-wrapper {
    justify-content: center;
  }

  .hero-illustration-box {
    margin-top: 2.5rem;
  }

  .floating-badge-1 {
    top: 5%;
    left: 2%;
  }

  .floating-badge-2 {
    top: 15%;
    right: 2%;
  }

  .floating-badge-3 {
    bottom: 15%;
    left: 2%;
  }

  .floating-badge-4 {
    bottom: 2%;
    right: 2%;
  }
}

@media (max-width: 767.98px) {
  .stats-section {
    padding: 2.5rem 0;
  }

  .stat-card {
    padding: 0.75rem 0.5rem;
  }

  .cta-banner-card {
    padding: 2.5rem 1.25rem;
    border-radius: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 485px) {

  .btn-primary-custom,
  .btn-outline-custom,
  .btn-whatsapp,
  .btn-white-custom {
    width: 100%;
  }

  .floating-badge {
    padding: 0.4rem 0.7rem;
    font-size: 0.75rem;
  }
}