/* ====================================
   AERECON TECH — Master Stylesheet
   Fully responsive, cleaned & optimized
   ==================================== */

:root {
  --bg-dark: #050505;
  --bg-purple-gradient: linear-gradient(135deg, #8a6bff 0%, #ff6bcb 100%);
  --text-white: #ffffff;
  --text-gray: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --purple-glow: rgba(138, 107, 255, 0.02);
  --purple-glow-strong: rgba(138, 107, 255, 0.04);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #ffffff;
}

html {
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-dark);
  color: var(--text-white);
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

/* Desktop-only class */
.desktop-only {
  display: none;
}

/* Subtle purple glow background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 10% 20%, rgba(138, 107, 255, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(167, 139, 250, 0.08) 0%, transparent 35%),
    radial-gradient(circle at 50% 50%, rgba(138, 107, 255, 0.03) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

/* Hidden utility */
.hidden { display: none !important; }

/* ====================== HEADER ====================== */
.new-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  backdrop-filter: blur(24px);
  background: linear-gradient(180deg, rgba(8, 8, 12, 0.98), rgba(5, 5, 8, 0.96));
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 6px 40px rgba(0, 0, 0, 0.6);
}

.new-header.hidden { transform: translateY(-100%); opacity: 0; }

.header-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand img {
  height: 50px;
  width: auto;
  transition: filter 0.3s ease;
}

.brand:hover img { filter: drop-shadow(0 0 15px var(--purple-glow-strong)); }

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

.header-nav a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--bg-purple-gradient);
  transition: width 0.3s ease;
  opacity: 0.7;
}

.header-nav a:hover { color: var(--text-white); text-shadow: 0 0 8px var(--purple-glow); }
.header-nav a:hover::after { width: 100%; }

.header-actions-new {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.consult-btn {
  background: var(--bg-purple-gradient);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  text-decoration: none;
  padding: 0.65rem 1.4rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(138, 107, 255, 0.2);
  white-space: nowrap;
}

.consult-btn:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 0 25px var(--purple-glow-strong), 0 0 40px rgba(255, 107, 203, 0.15);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: white;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 1.5rem 2rem;
  background: rgba(8, 8, 12, 0.99);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: fixed;
  top: 65px;
  left: 0;
  height: 1000px !important;
  right: 0;
  z-index: 1001;
  backdrop-filter: blur(24px);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.mobile-menu a:hover { color: #8a6bff; }

.mobile-menu .consult-btn {
  margin-top: 0.5rem;
  text-align: center;
  width: 100%;
  padding: 0.8rem 1.5rem;
  font-size: 0.95rem;
}

/* ====================== PAGE SHELL ====================== */
.page-shell {
  padding-top: 80px;
}

/* ====================== HERO ====================== */
.hero-section {
  padding: 2rem 1.5rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-left { max-width: 600px; }

.hero-eyebrow {
    display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border: 1px solid rgba(138, 107, 255, 0.3);
  border-radius: 9999px;
  margin-bottom: 24px;
  font-size: 11px;
  font-weight: 600;
  color: #ffffff;
  background: rgba(138, 107, 255, 0.06);
}

.hero-eyebrow span { color: #ffffff; }

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-gradient {
  color: #ffffff;
}

.hero-description {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 100%;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-btn-primary {
  background: linear-gradient(135deg, #8a6bff, #a78bfa);
  border: none;
  color: white;
  padding: 14px 28px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 25px rgba(138, 107, 255, 0.25);
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(138, 107, 255, 0.35);
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding: 14px 28px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.hero-right {
  display: flex;
  justify-content: center;
}

.hero-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 4/5;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(15, 15, 20, 0.9), rgba(10, 10, 15, 0.85));
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(138, 107, 255, 0.1);
}

.hero-video-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(138, 107, 255, 0.08), transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

/* ====================== BRAND / STATS ====================== */
.brand-section {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;

  padding: 24px 20px 40px;
  position: relative;
}

.top-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(192, 85, 255, 0.55) 50%, transparent 100%);
}

.glow {
  position: absolute;
  pointer-events: none;
  filter: blur(40px);
  opacity: 0.4;
}

.glow-1 { width: 240px; height: 240px; left: -60px; top: 10px; background: rgba(144, 65, 255, 0.12); }
.glow-2 { width: 300px; height: 240px; right: -70px; top: 10px; background: rgba(167, 139, 250, 0.10); }
.glow-3 { width: 360px; height: 280px; left: 50%; top: 110px; transform: translateX(-50%); background: rgba(138, 107, 255, 0.06); }

.brand-section .container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 100%;
}

.badge {
  width: fit-content;
 
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(213, 127, 255, 0.18);
  background: rgba(21, 25, 49, 0.75);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.badge-icon { font-size: 12px; transform: translateY(-1px); }

.brand-section h1 {
  color: white;
  font-size: clamp(28px, 5vw, 54px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0;
}

.subtext {
  margin-top: 10px;
  color: #ffffff;
  font-size: clamp(16px, 2.5vw, 24px);
  font-weight: 300;
}

.highlight-text {
  margin-top: 14px;
  color: #ffffff !important;
  font-size: clamp(16px, 2vw, 28px);
  font-weight: 600;
}

.stats-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  gap: 20px;
  align-items: center;
  justify-items: center;
}

.stat-card {
  position: relative;
  min-height: 170px;
  border-radius: 18px;
  width: 100%;
  background: linear-gradient(180deg, rgba(21, 28, 52, 0.9) 0%, rgba(16, 22, 43, 0.72) 100%);
  border: 1px solid rgba(123, 146, 197, 0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 16px 50px rgba(0, 0, 0, 0.20);
  overflow: hidden;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: rgba(138, 107, 255, 0.4);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 16px 50px rgba(0, 0, 0, 0.30), 0 0 30px rgba(138, 107, 255, 0.15);
  transform: translateY(-2px);
}

.side-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
}

.card-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  gap: 14px;
}

.card-content h3, .ring-inner h3 {
  color: white;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.card-content p, .ring-inner p {
  margin-top: 6px;
  color: #ffffff;
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.money { color: #ffffff; font-size: 32px; line-height: 1; }

.accent-line { position: absolute; top: 0; width: 100%; height: 2px; opacity: 0.95; }
.accent-line.purple { background: linear-gradient(90deg, transparent 0%, rgba(154, 100, 255, 0.85) 36%, rgba(234, 97, 255, 0.9) 100%); }
.accent-line.cyan { background: linear-gradient(90deg, rgba(73, 227, 255, 0.95) 0%, rgba(55, 191, 255, 0.75) 40%, transparent 100%); }

.wave { position: absolute; width: 104px; height: 34px; opacity: 0.8; }
.wave-left { right: 14px; top: 20px; }
.wave-right { right: 14px; top: 16px; }

.center-card { min-height: 200px; display: grid; place-items: center; padding: 20px; width: 100%; }

@media (max-width: 768px) {
  .stats-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .stats-grid .left-card {
    order: 1;
  }

  .stats-grid .center-card {
    order: 2;
  }

  .stats-grid .right-card {
    order: 3;
  }
}

.ring-wrap { position: relative; display: grid; place-items: center; }

.ring {
  --progress: 78;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(8, 13, 29, 0.96) 0 57%, transparent 58%),
    conic-gradient(from 220deg, #d75cff 0deg, #f061ff 115deg, #35d6ff 240deg, #66e6ff calc(var(--progress) * 3.6deg), rgba(255,255,255,0.10) 0deg);
  box-shadow: 0 0 0 16px rgba(8, 14, 28, 0.55), 0 0 28px rgba(100, 146, 255, 0.08);
  transition: all 0.3s ease;
}

.center-card:hover .ring {
  box-shadow: 0 0 0 16px rgba(8, 14, 28, 0.55), 0 0 40px rgba(167, 139, 250, 0.3), 0 0 60px rgba(138, 107, 255, 0.2);
}

.ring::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(121, 92, 255, 0.08), rgba(53, 214, 255, 0.04), transparent 70%);
  z-index: -1;
}

.ring-inner {
  width: 116px;

  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

/* ====================== SECTIONS BASE ====================== */
.section { padding: 4rem 1.5rem; }



/* ---------- Client Transformation Results Section ---------- */
.results-section {
  position: relative;
  padding: 100px 24px 120px;
  overflow: hidden;
  background: var(--bg-dark);
  min-height: 60vh;
}

.results-section * {
  color: #ffffff;
}

/* Background ambient glow */
.results-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1200px;
  height: 800px;
  background: radial-gradient(ellipse at center, rgba(138, 107, 255, 0.08) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* Particles */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0;
  animation: float-particle 7s ease-in-out infinite;
}

@keyframes float-particle {
  0%, 100% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0;
  }
  20% {
    opacity: 0.8;
  }
  50% {
    transform: translateY(-30px) translateX(15px) scale(1.2);
    opacity: 0.5;
  }
  80% {
    opacity: 0.8;
  }
}

/* Content container */
.container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bg-purple-gradient);
  box-shadow: 0 0 10px rgba(138, 107, 255, 0.8);
}

.title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
    color: #ffffff;
    letter-spacing: -0.5px;
  }

.subtitle {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 60px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }

/* Featured card */
.featured-card-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
  position: relative;
}

.featured-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  height: 130%;
  background: radial-gradient(ellipse at center, var(--purple-glow-strong) 0%, transparent 70%);
  z-index: -1;
  filter: blur(50px);
  opacity: 0.9;
}

.card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(138, 107, 255, 0.1),
    0 0 50px var(--purple-glow),
    0 12px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.card:hover {
  transform: translateY(-12px);
  box-shadow:
    0 0 0 1px rgba(138, 107, 255, 0.2),
    0 0 80px var(--purple-glow-strong),
    0 20px 60px rgba(0, 0, 0, 0.5);
}

.featured-screenshot-card img,
.social-screenshot img {
  width: 120%;
  height: 133%;
  object-fit: cover;
  display: block;
}

.results-section .cards .profile-inner img,
.results-section .small-cards .profile-inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.featured-card {
  width: 100%;
  max-width: 900px;
  padding: 24px;
}

.featured-screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.featured-screenshot-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.screenshot-label {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.screenshot-label i {
  font-size: 16px;
}

/* Social Cards Wrapper */
.social-cards-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 24px;
  align-items: center;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* Social Card Base Styles */
.social-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(138, 107, 255, 0.15);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: floatCard 6s ease-in-out infinite;
}

.social-card:nth-child(1) {
  animation-delay: 0s;
}

.social-card:nth-child(2) {
  animation-delay: 0.5s;
}

.social-card:nth-child(3) {
  animation-delay: 1s;
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* TikTok & Facebook Cards */
.tiktok-card,
.facebook-card {
  transform: scale(0.95);
}

.tiktok-card:hover,
.facebook-card:hover {
  transform: translateY(-12px) scale(0.97);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  border-color: rgba(138, 107, 255, 0.3);
}

/* Featured Instagram Card */
.featured-social-card {
  z-index: 2;
}

.featured-social-card .featured-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(138, 107, 255, 0.3) 0%, transparent 70%);
  z-index: -1;
  filter: blur(30px);
  opacity: 0.7;
}

.featured-social-card:hover {
  transform: scale(1.05);
  box-shadow: 0 24px 64px rgba(138, 107, 255, 0.3);
  border-color: rgba(138, 107, 255, 0.5);
}

/* Social Screenshot */
.social-screenshot {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.featured-social-card .social-screenshot {
  height: 350px;
}

/* Social Card Content */
.social-card-content {
  padding: 20px;
}

.social-platform-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.social-icon {
  font-size: 24px;
  color: #fff;
}

.tiktok-card .social-icon {
  color: #ff0050;
}

.instagram-card .social-icon {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.facebook-card .social-icon {
  color: #1877f2;
}

.social-platform-name {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.social-followers {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  margin: 0 0 8px 0;
  font-weight: 600;
}

.social-description {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  margin: 0 0 16px 0;
  line-height: 1.5;
}

.visit-profile-btn {
  width: 100%;
  padding: 12px 20px;
  border: 1px solid rgba(138, 107, 255, 0.5);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(138, 107, 255, 0.15) 0%, rgba(255, 107, 203, 0.1) 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.visit-profile-btn:hover {
  background: linear-gradient(135deg, rgba(138, 107, 255, 0.3) 0%, rgba(255, 107, 203, 0.25) 100%);
  box-shadow: 0 0 20px rgba(138, 107, 255, 0.3);
  transform: translateY(-2px);
}

/* ============================================================
   CUSTOM PROPERTIES FOR CARDS
============================================================ */
:root {
  --bg-base: #06030f;
  --bg-top: #150a2e;
  --bg-bottom: #0d0520;
  --purple-100: #f3e8ff;
  --purple-200: #e9d5ff;
  --purple-300: #d8b4fe;
  --purple-400: #c084fc;
  --purple-500: #a855f7;
  --purple-600: #9333ea;
  --purple-700: #7c3aed;
  --purple-800: #6d28d9;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --white: #ffffff;
  --card-bg: rgba(20,15,35,0.55);
  --card-border: rgba(168,85,247,0.18);
  --card-radius: 26px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --transition-base: 0.32s cubic-bezier(0.22,1,0.36,1);
}

/* ============================================================
   GLOW ORBS
============================================================ */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  will-change: transform;
  z-index: 1;
}

.glow-orb--tl {
  width: 520px; height: 520px;
  top: -120px; left: -100px;
  background: radial-gradient(circle, rgba(124,58,237,0.15) 0%, transparent 70%);
  opacity: 0.2;
  animation: glowDrift 18s ease-in-out infinite;
}
.glow-orb--tr {
  width: 440px; height: 440px;
  top: -60px; right: -80px;
  background: radial-gradient(circle, rgba(168,85,247,0.12) 0%, transparent 70%);
  opacity: 0.15;
  animation: glowDrift 22s ease-in-out infinite reverse;
  animation-delay: -6s;
}
.glow-orb--r {
  width: 380px; height: 380px;
  top: 40%; right: -60px;
  background: radial-gradient(circle, rgba(139,92,246,0.1) 0%, transparent 70%);
  opacity: 0.12;
  animation: glowDrift 20s ease-in-out infinite;
  animation-delay: -9s;
}
.glow-orb--lm {
  width: 280px; height: 280px;
  top: 35%; left: -40px;
  background: radial-gradient(circle, rgba(168,85,247,0.18) 0%, transparent 70%);
  opacity: 0.1;
  animation: glowDrift 16s ease-in-out infinite reverse;
  animation-delay: -4s;
}

@keyframes glowDrift {
  0%   { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(18px, -24px) scale(1.04); }
  50%  { transform: translate(-12px, 16px) scale(0.97); }
  75%  { transform: translate(22px, 10px) scale(1.03); }
  100% { transform: translate(0, 0) scale(1); }
}

/* ============================================================
   SPOTLIGHT
============================================================ */
.spotlight {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 340px;
  background: radial-gradient(ellipse at 50% 100%, rgba(168,85,247,0.08) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
  z-index: 1;
}

/* ============================================================
   PARTICLES
============================================================ */
.particles-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  bottom: -10px;
  opacity: 0;
  will-change: transform, opacity;
}

@keyframes floatParticle {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-100vh) translateX(var(--drift, 20px)); opacity: 0; }
}

/* ============================================================
   CARDS CONTAINER
============================================================ */
.cards {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 28px;
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

/* ============================================================
   CARD BASE
============================================================ */
.cards .card {
  position: relative;
  background: var(--card-bg);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border: 1px solid var(--card-border);
  border-radius: var(--card-radius);
  width: 380px;
  padding: 28px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  will-change: transform;
  animation: floatCard 7s ease-in-out infinite;
  overflow: visible;
  cursor: default;
}

/* Inner highlight pseudo */
.cards .card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--card-radius);
  padding: 1px;
  background: linear-gradient(180deg, rgba(168,85,247,0.22) 0%, transparent 50%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.cards .card:hover {
  transform: translateY(-10px);
  border-color: rgba(168,85,247,0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.cards .card--left  { animation-delay: 0s; }
.cards .card--right { animation-delay: -1.5s; }

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

/* ============================================================
   FEATURED CARD
============================================================ */
.cards .card--featured {
  width: 440px;
  padding: 36px 30px 32px;
  background: rgba(28,20,48,0.65);
  border-color: rgba(168,85,247,0.35);
  box-shadow:
    0 0 30px rgba(168,85,247,0.15),
    0 25px 50px rgba(0,0,0,0.55);
  animation: floatCardFeatured 7s ease-in-out infinite;
  animation-delay: -3.5s;
  z-index: 11;
}

.cards .card--featured::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 160px;
  border-radius: var(--card-radius) var(--card-radius) 0 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(168,85,247,0.14) 0%, transparent 70%);
  pointer-events: none;
}

.cards .card--featured:hover {
  transform: scale(1.05) translateY(-12px);
  border-color: rgba(168,85,247,0.65);
  box-shadow:
    0 0 40px rgba(168,85,247,0.2),
    0 35px 70px rgba(0,0,0,0.6);
}

@keyframes floatCardFeatured {
  0%   { transform: scale(1.08) translateY(0); }
  50%  { transform: scale(1.08) translateY(-10px); }
  100% { transform: scale(1.08) translateY(0); }
}

/* ============================================================
   RIBBON
============================================================ */
.ribbon-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 130px;
  height: 130px;
  overflow: hidden;
  border-radius: 0 var(--card-radius) 0 0;
  pointer-events: none;
  z-index: 20;
}

.ribbon {
  position: absolute;
  top: 28px;
  right: -38px;
  width: 160px;
  padding: 7px 0;
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  transform: rotate(45deg);
  box-shadow: 0 4px 18px rgba(168,85,247,0.55), 0 2px 8px rgba(0,0,0,0.3);
  transform-origin: center;
}

/* ============================================================
   PLATFORM HEADER (icon + name)
============================================================ */
.platform-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.platform-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  font-size: 20px;
  color: #fff;
}

.platform-icon svg { display: block; }

.platform-icon--tiktok { background: #0a0a0a; }
.platform-icon--instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.platform-icon--facebook { background: #1877f2; }

.cards .platform-header {
  margin-bottom: 4px;
}

.card-name--verified {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.card-inst-label {
  color: rgba(168,85,247,0.8);
  font-size: 11.5px;
  display: block;
}

.stat-value--sm {
  font-size: 11px;
}

.platform-name {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

/* ============================================================
   PROFILE IMAGE RING
============================================================ */
.profile-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-ring {
  width: 112px; height: 112px;
  border-radius: 50%;
  background: conic-gradient(from 140deg, #a855f7, #6366f1, #ec4899, #a855f7);
  padding: 3px;
  box-shadow: 0 0 24px rgba(168,85,247,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.profile-ring--featured {
  width: 140px; height: 140px;
  background: conic-gradient(from 120deg, #c084fc, #a855f7, #7c3aed, #ec4899, #c084fc);
  padding: 4px;
  box-shadow: 0 0 30px rgba(168,85,247,0.6), 0 0 60px rgba(168,85,247,0.35);
}

.profile-inner {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  overflow: hidden;
}

.profile-inner img {
  width: 150%;
  height: 150% !important;
  object-fit: contain; /* Yeh ensure karega ki logo poora dikhe without cutting */
}

.profile-inner--featured {
  padding: 14px;
}

/* MM Logo SVG */
.mm-logo {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   CARD INFO (name + handle)
============================================================ */
.card-info {
  text-align: center;
}

.card-name {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.card-handle {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 400;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   STATS
============================================================ */
.stats {
  border-top: 1px solid rgba(168,85,247,0.15);
  border-bottom: 1px solid rgba(168,85,247,0.15);
  padding: 14px 0;
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  gap: 0;
}

.stat-item {
  flex: 1;
  text-align: center;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: rgba(168,85,247,0.15);
}

.stat-value {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 3px;
  white-space: nowrap;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 400;
  color: var(--gray-400);
  line-height: 1;
  white-space: nowrap;
}

/* ============================================================
   DESCRIPTION
============================================================ */
.card-desc {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  color: var(--gray-400);
  line-height: 1.6;
  text-align: center;
  min-height: 38px;
}

/* ============================================================
   FOLLOW BUTTON
============================================================ */
.btn-follow {
  display: block;
  width: 100%;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  padding: 13px 20px;
  background: rgba(168,85,247,0.08);
  border: 1px solid rgba(168,85,247,0.35);
  transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base), border-color var(--transition-base);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}

.btn-follow:hover {
  transform: translateY(-2px);
  background: rgba(168,85,247,0.16);
  border-color: rgba(168,85,247,0.6);
  box-shadow: 0 8px 24px rgba(168,85,247,0.25);
}

.btn-follow .btn-arrow {
  display: inline-block;
  transition: transform 0.28s cubic-bezier(0.22,1,0.36,1);
}

.btn-follow:hover .btn-arrow {
  transform: translate(3px, -3px);
}

/* Featured button */
.btn-follow--featured {
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  border: none;
  font-size: 14px;
  padding: 15px 24px;
  box-shadow: 0 4px 24px rgba(168,85,247,0.4), 0 2px 8px rgba(0,0,0,0.3);
}

.btn-follow--featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.btn-follow--featured:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(168,85,247,0.6), 0 4px 16px rgba(0,0,0,0.4);
  background: linear-gradient(135deg, #c084fc, #a855f7);
  border: none;
}

/* TikTok card accents */
.cards .card--tiktok {
  border-color: rgba(254, 44, 85, 0.35);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 24px rgba(254, 44, 85, 0.1);
}

.cards .card--tiktok::before {
  background: linear-gradient(180deg, rgba(254, 44, 85, 0.22) 0%, transparent 50%);
}

.cards .card--tiktok:hover {
  border-color: rgba(254, 44, 85, 0.55);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(254, 44, 85, 0.15);
}

.profile-ring--tiktok {
  background: conic-gradient(from 140deg, #fe2c55, #ff0050, #25f4ee, #fe2c55);
  box-shadow: 0 0 24px rgba(254, 44, 85, 0.4);
}

.cards .card--tiktok .stats {
  border-color: rgba(254, 44, 85, 0.18);
}

.cards .card--tiktok .stat-item + .stat-item::before {
  background: rgba(254, 44, 85, 0.18);
}

.btn-follow--tiktok {
  background: rgba(254, 44, 85, 0.08);
  border: 1px solid rgba(254, 44, 85, 0.45);
}

.btn-follow--tiktok:hover {
  background: rgba(254, 44, 85, 0.16);
  border-color: rgba(254, 44, 85, 0.7);
  box-shadow: 0 8px 24px rgba(254, 44, 85, 0.25);
}

/* Facebook card accents */
.cards .card--facebook {
  border-color: rgba(24, 119, 242, 0.35);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 24px rgba(24, 119, 242, 0.1);
}

.cards .card--facebook::before {
  background: linear-gradient(180deg, rgba(24, 119, 242, 0.22) 0%, transparent 50%);
}

.cards .card--facebook:hover {
  border-color: rgba(24, 119, 242, 0.55);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(24, 119, 242, 0.15);
}

.profile-ring--facebook {
  background: conic-gradient(from 140deg, #1877f2, #42a5f5, #0d65d9, #1877f2);
  box-shadow: 0 0 24px rgba(24, 119, 242, 0.4);
}

.cards .card--facebook .stats {
  border-color: rgba(24, 119, 242, 0.18);
}

.cards .card--facebook .stat-item + .stat-item::before {
  background: rgba(24, 119, 242, 0.18);
}

.btn-follow--facebook {
  background: rgba(24, 119, 242, 0.08);
  border: 1px solid rgba(24, 119, 242, 0.45);
}

.btn-follow--facebook:hover {
  background: rgba(24, 119, 242, 0.16);
  border-color: rgba(24, 119, 242, 0.7);
  box-shadow: 0 8px 24px rgba(24, 119, 242, 0.25);
}

/* Mobile slider for MM cards */
@media (max-width: 820px) {
  .cards {
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 18px;
    padding: 24px 20px 36px;
    max-width: 100%;
    scroll-padding-inline: 50%;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
  }

  .cards::-webkit-scrollbar {
    display: none;
  }

  .cards .card {
    flex: 0 0 min(85vw, 340px);
    width: min(85vw, 340px);
    scroll-snap-align: center;
    animation: none;
    transform: none;
  }

  .cards .card--featured {
    flex: 0 0 min(88vw, 360px);
    width: min(88vw, 360px);
    transform: none;
    animation: none;
  }

  .cards .card:hover,
  .cards .card--featured:hover {
    transform: none;
  }
}

/* Small cards grid */
.small-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  margin-bottom: 48px;
  padding: 0 20px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* Small variant — same Instagram-style layout as main cards */
.small-cards .card {
  position: relative;
  width: 100%;
  padding: 20px 16px 18px;
  border-radius: 18px;
  background: var(--card-bg);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border: 1px solid var(--card-border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  overflow: visible;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.small-cards .card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(180deg, rgba(168,85,247,0.22) 0%, transparent 50%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.small-cards .card:hover {
  transform: translateY(-6px);
  border-color: rgba(168,85,247,0.4);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

.small-cards .profile-wrap {
  margin-bottom: 2px;
}

.small-cards .profile-ring {
  width: 72px;
  height: 72px;
  padding: 3px;
  box-shadow: 0 0 18px rgba(168,85,247,0.3);
}

.small-cards .profile-inner {
  padding: 8px;
  background: #000;
}

.small-cards .profile-inner img {
  width: 100%;
  height: 100%;
 
  object-fit: contain;
  display: block;
}

.small-cards .card-name {
  font-size: 12.5px;
  margin-bottom: 3px;
}

.small-cards .card-handle.card-inst-label {
  display: block;
  font-size: 10px;
  color: rgba(168,85,247,0.8);
  margin-bottom: 0;
}

.small-cards .stats {
  padding: 10px 0;
  margin: 2px 0;
}

.small-cards .stat-value {
  font-size: 12px;
}

.small-cards .stat-label {
  font-size: 9px;
}

.small-cards .stat-item + .stat-item::before {
  top: 8%;
  bottom: 8%;
}

.small-cards .card-desc {
  font-size: 10.5px;
  line-height: 1.55;
  min-height: 32px;
}

.small-cards .btn-follow {
  padding: 10px 14px;
  font-size: 12px;
  margin-top: 2px;
}

/* Many more */
.many-more {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}

.many-more span {
    display: inline-block;
    color: #ffffff;
    position: relative;
  }

.many-more span::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #ffffff;
    opacity: 0.5;
  }



/* ====================== PACKAGES ====================== */
.packages-section { padding: 3.5rem 1.5rem; position: relative; overflow: hidden; }
.packages-container { max-width: 820px; margin: 0 auto; }

.packages-header { text-align: center; margin-bottom: 2rem; }

.packages-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px;
  border-radius: 999px;
  border: 1px solid rgba(138, 107, 255, 0.3);
  background: rgba(138, 107, 255, 0.06);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.packages-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  line-height: 1.1;
  color: white;
  margin-bottom: 0.75rem;
  letter-spacing: -0.04em;
}

.packages-title span {
  color: #ffffff;
}

.packages-subtitle { font-size: 0.92rem; color: #ffffff; max-width: 520px; margin: 0 auto; }

.packages-grid {
  display: flex;
  gap: 1.25rem;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}

.package-card {
  background: rgba(15, 15, 25, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.25rem 1.15rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: min(100%, 360px) !important;
  flex: 1 1 320px;
  max-width: 360px;
}

.package-card:hover {
  transform: translateY(-8px);
  border-color: rgba(138, 107, 255, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(138, 107, 255, 0.15);
}

.package-card.popular {
  border: 2px solid rgba(255, 107, 203, 0.5);
  background: rgba(20, 15, 30, 0.9);
}

.popular-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: linear-gradient(135deg, #8a6bff, #ff6bcb);
  color: white;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.package-name { font-size: 1rem; font-weight: 800; color: white; margin-bottom: 0.75rem; line-height: 1.35; }

.package-price { font-size: 1.75rem; font-weight: 900; color: white; margin-bottom: 0.4rem; }
.package-price .currency { font-size: 0.95rem; vertical-align: top; }
.package-price .period { font-size: 0.75rem; font-weight: 500; color: #ffffff; }

.package-description { font-size: 0.82rem; color: #ffffff; margin-bottom: 1rem; line-height: 1.45; }

.package-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(138, 107, 255, 0.3), transparent);
  margin-bottom: 1rem;
}

.package-mentor {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(138, 107, 255, 0.3);
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.package-full-guarantee {
  background: rgba(255, 107, 203, 0.1);
  border: 1px dashed rgba(255, 107, 203, 0.5);
  border-radius: 12px;
  padding: 0.85rem;
  margin-bottom: 1rem;
  color: #ffffff;
  font-size: 0.8rem;
  line-height: 1.5;
}

.package-full-guarantee strong {
  color: #ff6bcb;
  display: block;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.65rem;
}

.we-handle {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.package-features { list-style: none; padding: 0; margin: 0 0 1.25rem; }

.package-features li {
  color: #ffffff;
  padding: 0.25rem 0;
  padding-left: 1.35rem;
  position: relative;
  line-height: 1.4;
  font-size: 0.78rem;
}

.package-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #8a6bff;
  font-weight: 700;
}

.package-guarantee, .package-testimonial {
  background: rgba(138, 107, 255, 0.08);
  border: 1px solid rgba(138, 107, 255, 0.2);
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  margin-bottom: 1rem;
  color: #ffffff;
  font-size: 0.78rem;
  line-height: 1.45;
  font-weight: 600;
}

.package-btn {
  width: 100%;
  padding: 0.7rem 1.2rem;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.package-btn:hover { background: rgba(255, 255, 255, 0.05); border-color: rgba(138, 107, 255, 0.5); }

.package-btn.popular-btn {
  background: linear-gradient(135deg, #8a6bff, #ff6bcb);
  border: none;
  box-shadow: 0 8px 30px rgba(138, 107, 255, 0.3);
}

.package-btn.popular-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(138, 107, 255, 0.4), 0 0 50px rgba(255, 107, 203, 0.2);
}

/* ====================== FAQ ====================== */
.faq-section { padding: 3rem 1.5rem; position: relative; overflow: hidden; }

.faq-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.faq-left { display: flex; flex-direction: column; gap: 1rem; }

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px;
  border-radius: 999px;
  border: 1px solid rgba(138, 107, 255, 0.3);
  background: rgba(138, 107, 255, 0.06);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  width: fit-content;
}

.faq-left h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: white;
}

.faq-left h2 span {
  color: #ffffff;
}

.faq-left p { font-size: 1rem; color: #ffffff; line-height: 1.7; }

.faq-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1rem; }

.faq-cta-btn {
  background: linear-gradient(135deg, #8a6bff, #ff6bcb);
  border: none;
  color: white;
  text-decoration: none;
  padding: 0.85rem 1.6rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 24px rgba(138, 107, 255, 0.3);
}

.faq-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(138, 107, 255, 0.4), 0 0 45px rgba(255, 107, 203, 0.2);
}

.faq-cta-btn-secondary {
  background: linear-gradient(135deg, #10d97b 0%, #0da85f 100%);
  border: none;
  color: white;
  text-decoration: none;
  padding: 0.65rem 1.2rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(16, 217, 123, 0.3);
}

.faq-cta-btn-secondary:hover {
  background: linear-gradient(135deg, #0da85f 0%, #0a7d4a 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(16, 217, 123, 0.4);
}

.faq-right { display: flex; flex-direction: column; gap: 0.65rem; }

.faq-item {
  background: rgba(15, 15, 25, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover { border-color: rgba(138, 107, 255, 0.3); }
.faq-item.active { border-color: rgba(138, 107, 255, 0.5); }

.faq-toggle {
  width: 100%;
  padding: 0.9rem 1rem;
  background: transparent;
  border: none;
  color: white;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  transition: all 0.3s ease;
  gap: 1rem;
}

.faq-toggle:hover { color: rgba(167, 139, 250, 1); }
.faq-question-text { flex: 1; }

.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(138, 107, 255, 0.1);
  border: 1px solid rgba(138, 107, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-icon.active { background: rgba(138, 107, 255, 0.2); transform: rotate(180deg); }

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

.faq-item.active .faq-answer { max-height: 320px; }

.faq-answer p {
  padding: 0 1rem 1rem;
  color: #ffffff;
  line-height: 1.55;
  font-size: 0.82rem;
}

/* ====================== TESTIMONIALS ====================== */
.client-love-section { padding: 5rem 1.5rem; position: relative; overflow: hidden; }
.client-love-container { max-width: 1400px; margin: 0 auto; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  gap: 1rem;
}

.section-head-left { display: flex; flex-direction: column; gap: 1rem; }

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: white;
  letter-spacing: -0.04em;
}

.section-title span {
  color: #ffffff;
}

/* Testimonial section */
.testimonial-slider-container {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.testimonial-slider-container::-webkit-scrollbar {
  display: none;
}

.testimonial-track {
  display: flex;
  gap: 2rem;
  width: max-content;
}

.testimonial-card {
  flex: 0 0 340px;
  background: rgba(15, 15, 25, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: fit-content;
  align-self: flex-start;
}

.testimonial-card:hover {
  border-color: #a855f7;
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.4), 0 10px 40px rgba(0, 0, 0, 0.5);
}

.quote-icon {
  width: 32px;
  height: 32px;
  color: #ffffff;
  opacity: 0.6;
  margin-bottom: 1.5rem;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
}

.testimonial-content.hidden {
  display: none;
}

.video-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.video-wrapper.hidden {
  display: none;
}

.testimonial-message {
  font-size: 1.3rem;
  line-height: 1.4;
  color: white;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8a6bff, #ff6bcb);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-info h4 {
  color: white;
  font-size: 1.05rem;
  font-weight: 700;
}

.watch-video-btn {
  margin-top: auto;
  background: transparent;
  border: 1px solid rgba(138, 107, 255, 0.5);
  color: #ffffff;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  width: 100%;
}

.watch-video-btn:hover {
  background: rgba(138, 107, 255, 0.2);
  border-color: #8a6bff;
}

.testimonial-video {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 9/16;
  max-height: 390px;
}

.testimonial-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ====================== LEADERSHIP ====================== */
.our-leadership {
  background: #000;
  padding: 80px 20px;
  color: #fff;
}

.leadership-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.leader-image-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid #8b5cf6;
  box-shadow: 0 0 35px rgba(139, 92, 246, 0.25);
}

.leader-image-card img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
  display: attribute;
}

.leader-content { max-width: 560px; }

.section-tag {
  display: inline-block;
  color: #ffffff;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.35);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.leader-content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.1;
  margin: 0 0 14px;
  color: #fff;
}

.leader-content h4 {
  font-size: 1.15rem;
  color: #ffffff;
  margin: 0 0 18px;
  font-weight: 600;
}

.leader-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 24px;
}

.leader-socials { display: flex; gap: 12px; margin-bottom: 24px; }

.leader-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  background: rgba(139, 92, 246, 0.14);
  border: 1px solid rgba(139, 92, 246, 0.45);
  transition: all 0.3s ease;
}

.leader-socials a:hover {
  background: #8b5cf6;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.leader-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.git-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1.6rem;
  border-radius: 9999px;
  background: #25d366;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.3);
}

.git-whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba( 37, 211, 102, 0.4);
}

/* ====================== CONTACT ====================== */
.contact-section {
  position: relative;
  padding: 80px 20px;
  background:
    radial-gradient(circle at 35% 15%, rgba(173, 73, 255, 0.18), transparent 22%),
    radial-gradient(circle at 28% 72%, rgba(0, 255, 170, 0.08), transparent 18%),
    linear-gradient(135deg, #090914 0%, #0d0d18 45%, #090914 100%);
  overflow: hidden;
}

.contact-section::before, .contact-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.contact-section::before { width: 240px; height: 240px; background: rgba(173, 73, 255, 0.16); top: 20px; left: 10%; }
.contact-section::after { width: 220px; height: 220px; background: rgba(0, 255, 170, 0.10); bottom: 20px; left: 18%; }

.contact-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.contact-content { max-width: 520px; }

.contact-badge {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.03);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.contact-title {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.1;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -1.5px;
}

.contact-title span {
  color: #ffffff;
}

.contact-text, .contact-subtext {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 18px;
  max-width: 100%;
}

.contact-text strong { color: #ffffff; font-weight: 700; }

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 260px;
  padding: 15px 28px;
  margin-top: 10px;
  border-radius: 999px;
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, #10d97b 0%, #18b7a0 100%);
  box-shadow: 0 14px 35px rgba(16, 217, 123, 0.30);
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(16, 217, 123, 0.38);
}

.wa-icon, .phone-icon { width: 18px; height: 18px; display: inline-flex; flex-shrink: 0; }
.wa-icon svg, .phone-icon svg { width: 100%; height: 100%; }

.contact-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}

.phone-icon { color: #1ed38d; }

.contact-form-wrap { width: 100%; }

.contact-form {
  padding: 30px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.30);
}

.contact-form .form-group { margin-bottom: 16px; }

.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  padding: 14px 16px;
  border-radius: 14px;
  outline: none;
  font-size: 15px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  font-family: inherit;
}

.contact-form input::placeholder, .contact-form textarea::placeholder { color: #ffffff; opacity: 0.7; }

.contact-form input:focus, .contact-form textarea:focus {
  border-color: rgba(16, 217, 123, 0.50);
  box-shadow: 0 0 0 4px rgba(16, 217, 123, 0.08);
}

.contact-form textarea { resize: vertical; min-height: 140px; }

.submit-btn {
  width: 100%;
  border: none;
  cursor: pointer;
  padding: 15px 22px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  background: linear-gradient(90deg, #10d97b 0%, #18b7a0 100%);
  box-shadow: 0 12px 30px rgba(16, 217, 123, 0.25);
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(16, 217, 123, 0.32);
}

/* ====================== MODAL ====================== */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}

.modal-content {
  position: relative;
  background: #0f0f0f;
  border-radius: 24px;
  padding: 2rem;
  max-width: 460px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-form-wrapper h3 { margin-bottom: 1.5rem; font-size: 1.4rem; }

.modal-form-wrapper h3 span {
  color: #ffffff;
}

.compact-form .form-row { margin-bottom: 1rem; }

.compact-form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  color: #ffffff;
}

.compact-form input {
  width: 100%;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 1rem;
  outline: none;
  font-family: inherit;
}

.compact-form input:focus { border-color: rgba(138, 107, 255, 0.5); }

.modal-actions { margin-top: 1.5rem; }

.btn-primary {
  background: linear-gradient(135deg, #8a6bff, #ff6bcb);
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 12px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  font-size: 1rem;
}

/* ====================== FOOTER (Redesigned) ====================== */
.footer {
  background: linear-gradient(180deg, #050505 0%, #020208 100%);
  padding: 60px 20px 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 20%, rgba(138, 107, 255, 0.08), transparent 50%);
  pointer-events: none;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.footer-brand-main { max-width: 400px; }

.footer-brand { margin-bottom: 20px; }
.footer-brand img { height: 50px; width: auto; }

.footer-brand-main h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.footer-brand-main p {
  color: #ffffff;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-socials { display: flex; gap: 12px; }

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.footer-socials a:hover {
  background: linear-gradient(135deg, #8a6bff, #ff6bcb);
  border-color: transparent;
  color: white;
  transform: translateY(-3px);
}

.footer-links-group h4 {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-links-group a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links-group a:hover { color: #8a6bff; }

.footer-links-group span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.footer-links-group a i, .footer-links-group span i { font-size: 0.85rem; }

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  position: rewritten;
  z-index: 1;
}

.footer-bottom p { color: #ffffff; font-size: 0.85rem; }

.footer-bottom-links { display: flex; gap: 25px; }

.footer-bottom-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover { color: #8a6bff; }

/* ====================== RESPONSIVE ====================== */
@media (min-width: 992px) {
  .desktop-only {
    display: inline-flex;
  }
}

@media (max-width: 1024px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-left { max-width: 100%; }
  .hero-eyebrow { justify-content: center; }
  .hero-buttons { justify-content: center; }
  .hero-right { justify-content: center; }

  .stats-grid { grid-template-columns: 1fr; gap: 16px; }
  .center-card { order: 2; }
  .left-card { order: 1; }
  .right-card { order: 3; }

  .faq-content { grid-template-columns: 1fr; gap: 2rem; }
  .faq-left { text-align: center; align-items: center; }
  .faq-buttons { justify-content: center; }

  .leadership-container { grid-template-columns: 1fr; gap: 35px; }
  .leader-content { max-width: 100%; }
  .leader-image-card img { min-height: 350px; }

  .contact-container { grid-template-columns: 1fr; gap: 40px; }
  .contact-content { max-width: 100%; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-brand-main { grid-column: 1 / -1; max-width: 100%; }

  /* Results Section Tablet */
  .results-section {
    padding: 80px 24px 100px;
  }

  .small-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .social-cards-wrapper {
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 16px;
  }
  
  .social-screenshot {
    height: 250px;
  }
  
  .featured-social-card .social-screenshot {
    height: 300px;
  }
}

@media (max-width: 640px) {
  .header-content { padding: 0 1rem; gap: 0.5rem; }
  .brand img { height: 40px; }
  .consult-btn { padding: 0.55rem 1rem; font-size: 0.8rem; }

  .page-shell { padding-top: 70px; }

  .hero-section { padding: 1.5rem 1rem 2rem; }
  .hero-eyebrow { display: none !important; }
  .hero-title { font-size: clamp(1.8rem, 8vw, 2.5rem); }
  .hero-description { font-size: 0.95rem; }
  .hero-buttons { flex-direction: column; gap: 10px; }
  .hero-buttons button, .hero-buttons a { width: 100%; }

  .brand-section { padding: 20px 16px 30px; }
  .badge { display: none !important; }
  .subtext { font-size: 15px; }
  .highlight-text { font-size: 15px; line-height: 1.5; }
  
  .results-badge, .faq-badge, .section-tag, .contact-badge, .packages-badge, .client-results-badge {
    display: none !important;
  }

  /* Results Section Mobile */
  .results-section {
    padding: 60px 16px 80px;
  }

  .subtitle {
    margin-bottom: 40px;
  }

  .social-cards-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    grid-template-columns: none;
  }

  .social-cards-wrapper::-webkit-scrollbar {
    display: none;
  }

  .social-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    transform: scale(1);
  }

  .instagram-card {
    order: -1;
  }

  .social-screenshot {
    height: 280px;
  }

  .featured-social-card .social-screenshot {
    height: 280px;
  }

  .small-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .small-card {
    aspect-ratio: 1.4 / 1;
    border-radius: 18px;
  }

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

  .side-card { padding: 20px 16px; }
  .card-content h3, .ring-inner h3 { font-size: 28px; }
  .money { font-size: 26px; }
  .ring { width: 140px; height: 140px; }
  .ring-inner { width: 100px; height: 100px; }



  .packages-section { padding: 3.5rem 1rem; }
  .package-card { padding: 1.5rem 1.2rem; }
  .package-price { font-size: 2rem; }

  .faq-section { padding: 3.5rem 1rem; }
  .faq-toggle { padding: 1.1rem 1rem; font-size: 0.95rem; }
  .faq-answer p { padding: 0 1rem 1.1rem; }

  .client-love-section { padding: 3.5rem 1rem; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .testimonial-card { flex: 0 0 300px; padding: 1.5rem; }
  .testimonial-message { font-size: 1.1rem; }

  .our-leadership { padding: 60px 16px; }
  .leader-content h2 { font-size: 1.8rem; }
  .leader-content h4 { font-size: 1.05rem; }
  .leader-buttons { flex-direction: column; }
  .leader-buttons a, .leader-buttons button { width: 100%; justify-content: center; }

  .contact-section { padding: 60px 16px; }
  .contact-title { font-size: 2rem; }
  .contact-text, .contact-subtext { font-size: 0.95rem; }
  .whatsapp-btn { width: 100%; min-width: 100%; }
  .contact-form { padding: 22px; border-radius: 20px; }

  .footer { padding: 50px 16px 25px; }
  .footer-top { 
    grid-template-columns: 1fr; 
    gap: 25px; 
  }
  .footer-links-group { display: none; }
  .footer-brand-main {
    max-width: 100%;
    text-align: center;
  }
  .footer-brand {
    display: flex;
    justify-content: center;
  }
  .footer-socials {
    justify-content: center;
  }
  .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
  .footer-bottom-links { justify-content: center; }
}

@media (max-width: 380px) {
  .hero-title { font-size: 1.6rem; }
  .testimonial-card { flex: 0 0 280px; }
}

/* ====================================
   PORTFOLIO / BRANDS SECTION STYLES
   ==================================== */

.brand-nav-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.brand-nav-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(138, 107, 255, 0.3);
  transform: translateX(4px);
}

.brand-nav-card.active {
  background: rgba(138, 107, 255, 0.1);
  border-color: rgba(138, 107, 255, 0.5);
  box-shadow: 0 0 20px rgba(138, 107, 255, 0.15);
}

.brand-nav-logo {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
 
  flex-shrink: 0;
}

.brand-nav-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.brand-nav-text h5 {
  color: #fff;
  font-size: 16px;
  margin: 0 0 4px 0;
}

.brand-nav-text p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  margin: 0;
}

.video-thumb-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.video-thumb-card:hover {
  border-color: rgba(138, 107, 255, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.video-thumb {
      width: 100%;
      aspect-ratio: 9 / 16;
      background: #000;
      height: 434px;
      overflow: hidden;
    }

.video-thumb iframe,
.video-thumb video,
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

.video-content {
  padding: 16px;
}

.video-content h5 {
  color: #fff;
  font-size: 16px;
  margin: 0 0 8px 0;
}

.video-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}

/* Custom scrollbar for brand sidebar */
.brand-sidebar::-webkit-scrollbar {
  width: 6px;
}

.brand-sidebar::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 3px;
}

.brand-sidebar::-webkit-scrollbar-thumb {
  background: rgba(138, 107, 255, 0.3);
  border-radius: 3px;
}

.brand-sidebar::-webkit-scrollbar-thumb:hover {
  background: rgba(138, 107, 255, 0.5);
}

/* Portfolio Section Responsive */
@media (max-width: 1024px) {
  .portfolio-layout {
    grid-template-columns: 1fr !important;
  }

  .brand-sidebar {
    flex-direction: row !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    max-height: none !important;
    padding-bottom: 8px !important;
  }

  .brand-nav-card {
    flex-shrink: 0;
    width: 280px;
  }
}

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

    @media (max-width: 768px) {
      .social-screenshots {
        grid-template-columns: 1fr !important;
      }

      .work-section {
        grid-template-columns: 1fr !important;
      }

      .videos-grid {
        grid-template-columns: 1fr !important;
      }

      .brand-stats {
        grid-template-columns: 1fr !important;
      }
    }
