/* =============================================
   CHATOPYA — Custom Professional Redesign CSS
   ============================================= */

/* ---- Variables ---- */
:root {
  --wa-green: #25D366;
  --wa-dark: #075E54;
  --wa-light: #dcf8c6;
  --primary: #0d83fd;
  --primary-dark: #0a6fd1;
  --dark: #0f1923;
  --dark-2: #1a2a3a;
  --text-muted: #6c7a8d;
  --section-bg: #f8fbff;
  --border-radius: 16px;
  --shadow: 0 8px 40px rgba(0,0,0,0.10);
  --shadow-hover: 0 16px 60px rgba(0,0,0,0.16);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Base ---- */
body { font-family: 'Inter', 'Roboto', sans-serif; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--wa-green); border-radius: 3px; }

/* ================================================
   NAVBAR
   ================================================ */
/* Floating navbar wrapper */
#header {
  background: transparent !important;
  border-bottom: none !important;
  box-shadow: none !important;
  padding: 20px 0;
  transition: padding 0.4s cubic-bezier(0.4,0,0.2,1);
}

#header.scrolled {
  padding: 8px 0;
}

.nav-floating-wrap {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-floating-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  background: rgba(6, 14, 24, 0.92);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 0;
  box-shadow: 0 8px 50px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}

#header.scrolled .nav-floating-bar {
  background: rgba(6, 14, 24, 0.98);
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.6);
}

/* Logo */
.nav-logo-new {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  padding: 10px 18px 10px 12px;
  background: rgba(255,255,255,0.04);
  border-right: 1px solid rgba(255,255,255,0.09);
  margin-right: 4px;
  transition: padding 0.4s cubic-bezier(0.4,0,0.2,1);
}

#header.scrolled .nav-logo-new {
  padding: 7px 14px 7px 10px;
}

.nav-logo-new img {
  height: 56px;
  width: auto;
  border-radius: 10px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
  transition: height 0.4s cubic-bezier(0.4,0,0.2,1);
}

#header.scrolled .nav-logo-new img {
  height: 38px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  margin-left: 12px;
  line-height: 1;
}

.nav-logo-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 2px;
  font-family: 'Inter', sans-serif;
  transition: font-size 0.4s cubic-bezier(0.4,0,0.2,1);
}

#header.scrolled .nav-logo-name {
  font-size: 0.9rem;
}

.nav-logo-sub {
  font-size: 0.62rem;
  font-weight: 600;
  color: rgba(37,211,102,0.85);
  letter-spacing: 3px;
  margin-top: 3px;
  transition: opacity 0.4s ease, font-size 0.4s ease;
}

#header.scrolled .nav-logo-sub {
  opacity: 0;
  font-size: 0;
  margin-top: 0;
}

/* Nav links */
.navmenu-new { flex: 1; }
.navmenu-new ul {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.navmenu-new ul li { position: relative; }

.navmenu-new ul li a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 10px;
  font-size: 0.83rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8) !important;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.navmenu-new ul li a:hover {
  color: #fff !important;
  background: rgba(255,255,255,0.08);
}

.navmenu-new a::after { display: none !important; }

/* Dropdown */
.navmenu-new .nav-dropdown {
  position: relative;
  padding-bottom: 12px;
  margin-bottom: -12px;
}
.navmenu-new .nav-dropdown-menu {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: rgba(10, 20, 34, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.navmenu-new .nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px; left: 0; right: 0;
  height: 12px;
}
.navmenu-new .nav-dropdown-menu li { width: 100%; }
.navmenu-new .nav-dropdown-menu li a {
  border-radius: 8px;
  padding: 10px 14px !important;
  font-size: 0.84rem !important;
  color: rgba(255,255,255,0.72) !important;
}
.navmenu-new .nav-dropdown-menu li a:hover {
  color: #fff !important;
  background: rgba(37,211,102,0.12) !important;
}
.navmenu-new .nav-dropdown:hover .nav-dropdown-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Demo button */
.btn-login-nav {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: rgba(255,255,255,0.8) !important;
  padding: 9px 14px;
  margin: 8px 0 8px 4px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.btn-login-nav:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.3);
  color: #fff !important;
}

.btn-login-nav::after { display: none !important; }

#header.scrolled .btn-login-nav {
  padding: 7px 14px;
  font-size: 0.8rem;
}

#header.scrolled .btn-demo-nav-new {
  padding: 8px 18px;
  font-size: 0.8rem;
  margin: 6px 8px 6px 4px;
}

.btn-demo-nav-new {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, #25D366, #19a84b);
  color: #fff !important;
  padding: 10px 20px;
  margin: 8px 8px 8px 4px;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1) !important;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.4px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
  text-transform: uppercase;
}

.btn-demo-nav-new:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.55);
  color: #fff !important;
}

.btn-demo-nav-new::after { display: none !important; }

/* Mobile toggle */
.mobile-nav-toggle {
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
}

/* Legacy selectors kept for compatibility */
.nav-logo img { height: 52px; }
.btn-demo-nav { display: none; }
.nav-inner { display: none; }

@media (max-width: 1199px) {
  .mobile-nav-toggle { display: block; }
  .navmenu ul { display: none; }
  .navmenu ul.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 80px; left: 0; right: 0; bottom: 0;
    background: rgba(10,18,28,0.97);
    padding: 24px;
    overflow-y: auto;
  }
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero-section-new {
  min-height: 100vh;
  background: linear-gradient(150deg, #0f1923 0%, #0d3040 35%, #075E54 70%, #0a8040 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 130px 0 80px;
}

/* Animated background mesh */
.hero-section-new::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(37,211,102,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 30%, rgba(13,131,253,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 30% 40% at 60% 80%, rgba(37,211,102,0.10) 0%, transparent 70%);
  animation: meshPulse 8s ease-in-out infinite;
}

@keyframes meshPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: orbFloat 10s ease-in-out infinite;
  pointer-events: none;
}

.hero-orb-1 {
  width: 400px; height: 400px;
  background: rgba(37,211,102,0.20);
  top: -100px; right: 15%;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 250px; height: 250px;
  background: rgba(13,131,253,0.20);
  bottom: 10%; left: 5%;
  animation-delay: -4s;
}

.hero-orb-3 {
  width: 180px; height: 180px;
  background: rgba(37,211,102,0.15);
  top: 30%; left: 40%;
  animation-delay: -7s;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  33% { transform: translateY(-30px) scale(1.05); }
  66% { transform: translateY(15px) scale(0.95); }
}

/* Grid pattern overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Floating chat bubbles */
.chat-bubble {
  position: absolute;
  z-index: 20;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 18px;
  padding: 10px 16px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
  animation: bubbleFloat 6s ease-in-out infinite;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.chat-bubble .wa-dot {
  width: 8px; height: 8px;
  background: var(--wa-green);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); }
  50% { box-shadow: 0 0 0 6px rgba(37,211,102,0); }
}

.chat-bubble-1 { top: 10%; right: 8%; animation-delay: 0s; }
.chat-bubble-2 { top: 28%; right: 2%; animation-delay: -2s; font-size: 0.75rem; }
.chat-bubble-3 { bottom: 18%; right: 10%; animation-delay: -4s; }
.chat-bubble-4 { bottom: 38%; right: 22%; animation-delay: -1.5s; font-size: 0.72rem; }

/* Floating integration badges */
.integ-badge {
  position: absolute;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 40px;
  padding: 7px 14px 7px 7px;
  pointer-events: none;
  animation: bubbleFloat 7s ease-in-out infinite;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}

.integ-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Bootstrap-icon badge for integration */
.integ-icon-bg {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
  color: #fff;
}
.ig-color      { background: linear-gradient(135deg, #e1306c, #833ab4); }
.shopify-color { background: #96BF48; }
.wa-color      { background: #25D366; }
.meta-color    { background: #0082FB; }
.trendyol-color{ background: #F27A1A; }

/* Green pulse dot for chat bubbles */
.bubble-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}
.bubble-dot.green {
  background: #25D366;
  box-shadow: 0 0 0 3px rgba(37,211,102,0.3);
  animation: pulse-dot 2s infinite;
}

.integ-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  white-space: nowrap;
}

/* Positions — left side of hero */
.integ-badge-instagram { top: 14%;  left: 2%;  animation-delay: -1s;   animation-duration: 6.5s; }
.integ-badge-shopify   { top: 32%;  left: 0%;  animation-delay: -3s;   animation-duration: 8s;   }
.integ-badge-meta      { bottom: 32%; left: 3%;  animation-delay: -5s; animation-duration: 7s;   }
.integ-badge-trendyol  { bottom: 14%; left: 1%;  animation-delay: -2s; animation-duration: 9s;   }
.integ-badge-whatsapp  { top: 52%;  left: 4%;  animation-delay: -4s;   animation-duration: 7.5s; }

@keyframes bubbleFloat {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.85; }
  25% { transform: translateY(-12px) translateX(5px); opacity: 1; }
  75% { transform: translateY(8px) translateX(-3px); opacity: 0.9; }
}

/* Hero content */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,211,102,0.15);
  border: 1px solid rgba(37,211,102,0.35);
  color: #7fffa8;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  animation: badgePulse 3s ease-in-out infinite;
}

.hero-badge .badge-dot {
  width: 6px; height: 6px;
  background: var(--wa-green);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.2); }
  50% { box-shadow: 0 0 20px 5px rgba(37,211,102,0.1); }
}

.hero-section-new h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.hero-section-new h1 .gradient-text {
  background: linear-gradient(135deg, var(--wa-green) 0%, #7fffa8 50%, #25d3a8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 520px;
}

.hero-subtitle .typed-cursor { color: var(--wa-green); }

/* Hero buttons */
.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.btn-hero-primary {
  background: linear-gradient(135deg, var(--wa-green) 0%, #1aaa52 100%);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 30px rgba(37,211,102,0.45);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-hero-primary::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(37,211,102,0.55); color: #fff; }
.btn-hero-primary:hover::before { opacity: 1; }

.btn-hero-secondary {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
  transform: translateY(-2px);
}

/* Hero trust row */
.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-trust-avatars {
  display: flex;
}

.hero-trust-avatars .ta {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  background: linear-gradient(135deg, var(--wa-dark), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  margin-left: -8px;
}

.hero-trust-avatars .ta:first-child { margin-left: 0; }

.hero-trust-text { color: rgba(255,255,255,0.70); font-size: 0.85rem; }
.hero-trust-text strong { color: #fff; }

/* Hero image side */
.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-phone-mockup {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-phone-mockup img {
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4));
  max-width: 100%;
  width: 100%;
}

.hero-phone-mockup img.hero-main-img {
  animation: none;
}

.hero-phone-mockup.hero-img-blend {
  overflow: visible;
}

.hero-main-img {
  border-radius: 0 !important;
  filter: brightness(1.05) contrast(1.02) !important;
  width: 125% !important;
  max-width: 125% !important;
  margin-left: -10%;
  -webkit-mask-image:
    linear-gradient(to right,  transparent 0%, black 18%, black 85%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-composite: destination-in;
  mask-image:
    linear-gradient(to right,  transparent 0%, black 18%, black 85%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-composite: intersect;
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-20px) rotate(1deg); }
}

.hero-stat-card {
  position: absolute;
  z-index: 10;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: statCardFloat 4s ease-in-out infinite;
  min-width: 160px;
}

.hero-stat-card-1 { bottom: 28%; left: -8%;  animation-delay: 0s;   }
.hero-stat-card-2 { top:    8%;  right: -6%; animation-delay: -2s;  }
.hero-stat-card-3 { top:    8%;  left: -8%;  animation-delay: -1s;  }
.hero-stat-card-4 { bottom: 8%;  right: -6%; animation-delay: -3s;  }
.hero-stat-card-5 { bottom: 8%;  left: -8%;  animation-delay: -4s;  }
.hero-stat-card-6 { top:    40%; right: -6%; animation-delay: -1.5s; }

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

.hero-stat-card .stat-icon-c {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.hero-stat-card .stat-icon-c.green  { background: rgba(37,211,102,0.15); }
.hero-stat-card .stat-icon-c.blue   { background: rgba(13,131,253,0.15); }
.hero-stat-card .stat-icon-c.purple { background: rgba(124,58,237,0.12); }
.hero-stat-card .stat-icon-c.orange { background: rgba(245,158,11,0.12); }
.hero-stat-card .stat-icon-c.teal   { background: rgba(13,148,136,0.12); }
.hero-stat-card .stat-icon-c.pink   { background: rgba(225,29,72,0.12);  }

.hero-stat-card .stat-val {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1a2a3a;
  line-height: 1;
}

.hero-stat-card .stat-lbl {
  font-size: 0.72rem;
  color: #6c7a8d;
  font-weight: 500;
  margin-top: 2px;
}

/* ================================================
   STATS BAND
   ================================================ */
.stats-band {
  background: #fff;
  border-top: none;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 48px 0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  position: relative;
  z-index: 10;
}

.stat-counter-card {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}

.stat-counter-card:last-child { border-right: none; }
.stat-counter-card:hover { transform: translateY(-4px); }

.stat-counter-card .num {
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--wa-dark) 0%, var(--wa-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
}

.stat-counter-card .label {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 8px;
  display: block;
}

.stat-counter-card .icon-top {
  font-size: 1.5rem;
  margin-bottom: 8px;
  display: block;
}

/* ================================================
   CLIENTS SECTION
   ================================================ */
.clients-section-new {
  background: var(--section-bg);
  padding: 60px 0;
}

.clients-label {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.clients-label span {
  color: var(--wa-green);
}

/* ================================================
   SECTION TITLES
   ================================================ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(37,211,102,0.12), rgba(13,131,253,0.08));
  border: 1px solid rgba(37,211,102,0.25);
  color: var(--wa-dark);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #0f1923;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ================================================
   FEATURES (MANAGEMENT PAGES)
   ================================================ */
.features-section-new {
  padding: 90px 0;
  background: #fff;
}

.features-tab-nav-new {
  display: flex;
  gap: 8px;
  background: var(--section-bg);
  border-radius: 16px;
  padding: 8px;
  margin-bottom: 40px;
  border: none;
  flex-wrap: wrap;
}

.features-tab-nav-new .nav-item { flex: 1; min-width: 140px; }

.features-tab-nav-new .nav-link {
  border: none !important;
  border-radius: 12px !important;
  padding: 14px 16px !important;
  text-align: center;
  color: var(--text-muted) !important;
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
  background: transparent !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.features-tab-nav-new .nav-link i { font-size: 1.3rem; }

.features-tab-nav-new .nav-link.active {
  background: #fff !important;
  color: var(--wa-dark) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10) !important;
}

.features-tab-nav-new .nav-link.active i { color: var(--wa-green); }

.feature-tab-pane-new .tab-image-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}

.feature-tab-pane-new .tab-image-wrapper:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.16);
}

.feature-tab-pane-new .tab-image-wrapper img { width: 100%; display: block; }

.feature-content-new h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f1923;
  margin-bottom: 14px;
}

.feature-content-new p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.feature-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.feature-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: #2d3748;
  font-weight: 500;
}

.feature-check-list li .fc-icon {
  width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--wa-green), var(--wa-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-check-list li .fc-icon i { font-size: 0.65rem; color: #fff; }

/* ================================================
   CUSTOMER SERVICE
   ================================================ */
.customer-service-section {
  padding: 90px 0;
  background: linear-gradient(150deg, #f0fdf4 0%, #e8f4ff 100%);
}

.cs-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.cs-feature-item {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: var(--transition);
  border: 1px solid rgba(37,211,102,0.10);
}

.cs-feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
  border-color: rgba(37,211,102,0.25);
}

.cs-feature-item .csi-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(37,211,102,0.15), rgba(13,131,253,0.10));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.cs-feature-item h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f1923;
  margin-bottom: 4px;
}

.cs-feature-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.cs-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: visible;
}

.cs-image-wrapper img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.cs-badge-floating {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: statCardFloat 4s ease-in-out infinite;
}

.cs-badge-floating.badge-1 { bottom: -20px; left: -20px; }
.cs-badge-floating.badge-2 { top: -20px; right: -15px; animation-delay: -2s; }

.cs-badge-floating .badge-val {
  font-size: 1.4rem;
  font-weight: 900;
  color: #0f1923;
  line-height: 1;
}

.cs-badge-floating .badge-lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

.cs-badge-floating .badge-ic {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* ================================================
   SERVICES
   ================================================ */
.services-section-new {
  padding: 90px 0;
  background: #fff;
}

.service-card-new {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 20px;
  padding: 32px 28px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card-new::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--wa-green), var(--primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card-new:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.service-card-new:hover::before { transform: scaleX(1); }

.service-card-new .sc-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card-new:hover .sc-icon { transform: scale(1.1) rotate(-5deg); }

.sc-icon-1 { background: linear-gradient(135deg, rgba(37,211,102,0.15), rgba(37,211,102,0.05)); color: var(--wa-dark); }
.sc-icon-2 { background: linear-gradient(135deg, rgba(13,131,253,0.15), rgba(13,131,253,0.05)); color: var(--primary-dark); }
.sc-icon-3 { background: linear-gradient(135deg, rgba(249,115,22,0.15), rgba(249,115,22,0.05)); color: #ea580c; }
.sc-icon-4 { background: linear-gradient(135deg, rgba(168,85,247,0.15), rgba(168,85,247,0.05)); color: #9333ea; }
.sc-icon-5 { background: linear-gradient(135deg, rgba(236,72,153,0.15), rgba(236,72,153,0.05)); color: #db2777; }

.service-card-new h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f1923;
  margin-bottom: 10px;
}

.service-card-new p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.service-card-new .sc-arrow {
  position: absolute;
  bottom: 20px; right: 20px;
  width: 32px; height: 32px;
  background: var(--section-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  opacity: 0;
  transition: var(--transition);
}

.service-card-new:hover .sc-arrow { opacity: 1; transform: translate(2px, -2px); }

/* ================================================
   WHY CHATOPYA — STEPS
   ================================================ */
.why-section {
  padding: 90px 0;
  background: linear-gradient(150deg, #0f1923 0%, #0d3040 50%, #075E54 100%);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 50px 50px;
}

.why-section .section-header h2 { color: #fff; }
.why-section .section-header p { color: rgba(255,255,255,0.65); }
.why-section .section-tag { background: rgba(37,211,102,0.15); border-color: rgba(37,211,102,0.3); color: #7fffa8; }

.why-step-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  padding: 36px 28px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(37,211,102,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

.why-step-card:hover {
  border-color: rgba(37,211,102,0.35);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

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

.why-step-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(37,211,102,0.2);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
  font-family: 'Nunito', sans-serif;
  transition: var(--transition);
}

.why-step-card:hover .why-step-num { color: rgba(37,211,102,0.5); }

.why-step-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--wa-green), var(--wa-dark));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(37,211,102,0.3);
}

.why-step-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.why-step-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 20px;
}

.why-step-img {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.why-step-img img { width: 100%; display: block; }

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

.why-feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.why-feature-list li:last-child { border-bottom: none; }
.why-feature-list li i { color: var(--wa-green); font-size: 0.75rem; }

/* ================================================
   MID-PAGE CTA BAND
   ================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--wa-green) 0%, #1aaa52 50%, var(--primary) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.cta-band h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.cta-band p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.btn-cta-band {
  background: #fff;
  color: var(--wa-dark);
  border: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  transition: var(--transition);
}

.btn-cta-band:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
  color: var(--wa-dark);
}

.btn-cta-band-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.btn-cta-band-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  color: #fff;
  transform: translateY(-3px);
}

/* ================================================
   CONTACT
   ================================================ */
.contact-section-new {
  padding: 90px 0;
  background: var(--section-bg);
}

.contact-info-card {
  background: linear-gradient(150deg, #0f1923, #075E54);
  border-radius: 24px;
  padding: 40px 32px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(37,211,102,0.2) 0%, transparent 60%);
}

.contact-info-card h3 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
}

.contact-info-card > p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-bottom: 32px;
  position: relative;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
}

.contact-info-item .ci-icon {
  width: 44px; height: 44px;
  background: rgba(37,211,102,0.15);
  border: 1px solid rgba(37,211,102,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--wa-green);
  flex-shrink: 0;
}

.contact-info-item h4 { color: rgba(255,255,255,0.65); font-size: 0.78rem; font-weight: 500; margin-bottom: 4px; }
.contact-info-item p { color: #fff; font-size: 0.9rem; font-weight: 600; margin: 0; }

.contact-social-row { display: flex; gap: 10px; margin-top: 32px; position: relative; }

.contact-social-row a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  transition: var(--transition);
  text-decoration: none;
}

.contact-social-row a:hover {
  background: rgba(37,211,102,0.2);
  border-color: rgba(37,211,102,0.4);
  color: var(--wa-green);
  transform: translateY(-3px);
}

.contact-form-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.08);
  height: 100%;
}

.contact-form-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f1923;
  margin-bottom: 6px;
}

.contact-form-card > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.contact-form-card .form-control {
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 0.9rem;
  color: #0f1923;
  background: #fafafa;
  transition: var(--transition);
}

.contact-form-card .form-control:focus {
  border-color: var(--wa-green);
  box-shadow: 0 0 0 4px rgba(37,211,102,0.10);
  background: #fff;
}

.contact-form-card .form-control::placeholder { color: #a0aec0; }

.btn-send-msg {
  background: linear-gradient(135deg, var(--wa-green) 0%, var(--wa-dark) 100%);
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 25px rgba(37,211,102,0.35);
  transition: var(--transition);
  cursor: pointer;
}

.btn-send-msg:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37,211,102,0.45);
}

/* ================================================
   FOOTER
   ================================================ */
.footer-new {
  background: #0a1118;
  padding: 64px 0 0;
  position: relative;
  overflow: hidden;
}

.footer-new::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--wa-green), var(--primary), transparent);
}

.footer-brand .sitename-footer {
  background: linear-gradient(135deg, var(--wa-green), #7fffa8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 14px;
  display: block;
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  transition: var(--transition);
  text-decoration: none;
}
.footer-social a:hover {
  background: rgba(37,211,102,0.15);
  border-color: rgba(37,211,102,0.3);
  color: var(--wa-green);
  transform: translateY(-3px);
}

.footer-links-col h5 {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-links-col ul { list-style: none; padding: 0; margin: 0; }
.footer-links-col ul li { margin-bottom: 10px; }
.footer-links-col ul li a {
  color: rgba(255,255,255,0.45);
  font-size: 0.875rem;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links-col ul li a:hover { color: var(--wa-green); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-item i {
  color: var(--wa-green);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item p {
  color: rgba(255,255,255,0.45);
  font-size: 0.855rem;
  margin: 0;
  line-height: 1.5;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 4px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 48px;
}

.footer-legal a {
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.25s ease;
  padding: 2px 6px;
}

.footer-legal a:hover { color: var(--wa-green); }

.footer-legal-dot {
  color: rgba(255,255,255,0.2);
  font-size: 0.75rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  margin-top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  margin: 0;
}

.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; transition: var(--transition); }
.footer-bottom a:hover { color: var(--wa-green); }

/* ================================================
   SCROLL TOP
   ================================================ */
#scroll-top {
  background: linear-gradient(135deg, var(--wa-green), var(--wa-dark)) !important;
  border: none !important;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4) !important;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 991px) {
  .hero-section-new { min-height: auto; padding: 100px 0 60px; }
  .hero-stat-card { display: none; }
  .chat-bubble { display: none; }
  .integ-badge { display: none; }
  .cs-feature-grid { grid-template-columns: 1fr; }
  .cs-badge-floating { display: none; }
  .features-tab-nav-new .nav-link h4 { font-size: 0.78rem; }
}

@media (max-width: 767px) {
  .stat-counter-card { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.06); }
  .stat-counter-card:last-child { border-bottom: none; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form-card { padding: 28px 20px; }
  .contact-info-card { padding: 28px 20px; }
  .why-step-card { margin-bottom: 10px; }
}

/* ================================================
   INSTAGRAM SUITE SECTION
   ================================================ */
.instagram-suite-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
  width: 100%;
  background: linear-gradient(150deg, #1a0a12 0%, #2d0a20 40%, #1a0526 100%);
  position: relative;
  overflow: hidden;
}

.instagram-suite-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 80% 30%, rgba(225,48,108,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 70%, rgba(131,58,180,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.instagram-suite-section .section-header h2 { color: #fff; }
.instagram-suite-section .section-header p { color: rgba(255,255,255,0.60); }

/* Tab nav */
.ig-tabs-wrapper { position: relative; z-index: 5; }

.ig-tab-nav {
  display: flex;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 8px;
  margin-bottom: 40px;
  border: 1px solid rgba(255,255,255,0.08);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.ig-tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.ig-tab-btn i { font-size: 1.1rem; }

.ig-tab-btn.active {
  background: linear-gradient(135deg, #e1306c, #833ab4);
  color: #fff;
  box-shadow: 0 4px 20px rgba(225,48,108,0.4);
}

.ig-tab-btn:not(.active):hover { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.85); }

/* Tab panes */
.ig-tab-pane { display: none; }
.ig-tab-pane.active { display: block; }

.ig-content h3 {
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.ig-content p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 22px;
}

.ig-feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(225,48,108,0.15), rgba(131,58,180,0.10));
  border: 1px solid rgba(225,48,108,0.3);
  color: #f472b6;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.ig-fc {
  background: linear-gradient(135deg, #e1306c, #833ab4) !important;
}

.ig-content .feature-check-list li { color: rgba(255,255,255,0.85); }

.ig-screenshot-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.ig-screenshot-wrapper:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(225,48,108,0.25);
}

.ig-screenshot-wrapper img { width: 100%; display: block; }

/* ================================================
   INTEGRATIONS SECTION
   ================================================ */
.integrations-section {
  padding: 90px 0;
  background: var(--section-bg);
}

.integration-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  height: 100%;
  border: 1.5px solid rgba(0,0,0,0.07);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.integration-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.10);
}

.shopify-card:hover { border-color: rgba(150,191,73,0.4); }
.trendyol-card:hover { border-color: rgba(249,125,0,0.4); }

.int-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.int-logo {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.shopify-logo { background: linear-gradient(135deg, #96bf49, #5a8e1a); color: #fff; }
.trendyol-logo { background: linear-gradient(135deg, #f97d00, #e05d00); color: #fff; }

.int-card-header h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f1923;
  margin: 0 0 4px;
}

.int-badge {
  background: rgba(37,211,102,0.10);
  color: var(--wa-dark);
  border: 1px solid rgba(37,211,102,0.2);
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
}

.integration-card > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.int-features-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}

.int-feat {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: #2d3748;
  font-weight: 500;
}

.shopify-card .int-feat i { color: #96bf49; }
.trendyol-card .int-feat i { color: #f97d00; }

.int-card-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 16px;
}

.int-status-dot {
  width: 8px; height: 8px;
  background: var(--wa-green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(37,211,102,0.2);
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}

.flow-screenshot-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.14);
  border: 1px solid rgba(0,0,0,0.07);
  transition: var(--transition);
}

.flow-screenshot-wrapper:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(13,131,253,0.15);
}

.flow-screenshot-wrapper img { width: 100%; display: block; }

/* ================================================
   AI META MARKETING SECTION
   ================================================ */
.ai-marketing-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
  width: 100%;
  background: linear-gradient(150deg, #050e1a 0%, #0a1928 50%, #040d18 100%);
  position: relative;
  overflow: hidden;
}

.ai-marketing-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 5% 50%, rgba(99,102,241,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 90% 30%, rgba(37,211,102,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.ai-marketing-content { position: relative; z-index: 5; }

.ai-tag {
  background: linear-gradient(135deg, rgba(99,102,241,0.15), rgba(139,92,246,0.10)) !important;
  border-color: rgba(99,102,241,0.3) !important;
  color: #a5b4fc !important;
}

.ai-pulse {
  width: 8px; height: 8px;
  background: #6366f1;
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
  display: inline-block;
  margin-right: 2px;
}

.ai-marketing-section h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 14px;
}

.ai-desc {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.ai-feature-pills {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.ai-pill {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 14px 18px;
  transition: var(--transition);
}

.ai-pill:hover {
  background: rgba(99,102,241,0.08);
  border-color: rgba(99,102,241,0.25);
  transform: translateX(6px);
}

.ai-pill > i {
  font-size: 1.3rem;
  color: #818cf8;
  margin-top: 2px;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}

.ai-pill strong { display: block; color: #fff; font-size: 0.9rem; margin-bottom: 2px; }
.ai-pill p { color: rgba(255,255,255,0.5); font-size: 0.8rem; margin: 0; }

.btn-ai-demo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 6px 30px rgba(99,102,241,0.45);
  transition: var(--transition);
}

.btn-ai-demo:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(99,102,241,0.55);
  color: #fff;
}

/* AI Chat Mockup */
.ai-visual-wrapper { position: relative; z-index: 5; }

.ai-chat-mockup {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.ai-chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.ai-avatar {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}

.ai-chat-header strong { display: block; color: #fff; font-size: 0.9rem; }
.ai-chat-header span { color: rgba(255,255,255,0.45); font-size: 0.75rem; }

.ai-chat-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; }

.ai-msg {
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 85%;
}

.ai-msg.user {
  background: linear-gradient(135deg, rgba(99,102,241,0.25), rgba(139,92,246,0.15));
  border: 1px solid rgba(99,102,241,0.2);
  color: rgba(255,255,255,0.9);
  align-self: flex-end;
  font-style: italic;
}

.ai-msg.bot {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  align-self: flex-start;
}

.ai-msg.bot p { margin: 0 0 6px; }
.ai-msg.bot p:last-child { margin: 0; }

.ai-msg.success {
  background: rgba(37,211,102,0.10);
  border-color: rgba(37,211,102,0.2);
  color: #7fffa8;
  font-weight: 600;
}

.bot-typing-header {
  font-size: 0.75rem;
  color: #818cf8;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* AI floating stat badges */
.ai-stat-badge {
  position: absolute;
  background: rgba(255,255,255,0.95);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  animation: statCardFloat 4s ease-in-out infinite;
}

.ai-stat-1 { bottom: -16px; left: -16px; animation-delay: 0s; }
.ai-stat-2 { top: -16px; right: -16px; animation-delay: -2s; }

.ai-stat-badge i { font-size: 1.2rem; flex-shrink: 0; }
.ai-stat-badge strong { display: block; color: #0f1923; font-size: 1.2rem; font-weight: 900; line-height: 1; }
.ai-stat-badge span { display: block; color: #6c7a8d; font-size: 0.7rem; font-weight: 500; margin-top: 2px; }

/* ================================================
   NAVBAR — add instagram/integrations links
   ================================================ */

/* ================================================
   AOS overrides for smoother animations
   ================================================ */
[data-aos] { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; }

/* ================================================
   RESPONSIVE — new sections
   ================================================ */
@media (max-width: 991px) {
  .ig-tab-nav { flex-wrap: wrap; width: 100%; }
  .ig-tab-btn { flex: 1; justify-content: center; min-width: 100px; }
  .ai-stat-badge { display: none; }
  .int-features-row { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .ig-tab-btn span { font-size: 0.78rem; }
  .ai-pill { padding: 10px 14px; }
  .ai-chat-body { padding: 14px; }
}

/* ================================================
   INTEGRATIONS TICKER
   ================================================ */
.integrations-ticker-section {
  padding: 56px 0 40px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  overflow: hidden;
}

.integrations-ticker-header {
  text-align: center;
  margin-bottom: 28px;
}

.ticker-label {
  display: inline-block;
  background: linear-gradient(135deg, var(--wa-dark), var(--primary));
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.integrations-ticker-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 6px 0 0;
}

.ticker-track-wrapper {
  position: relative;
}

.ticker-track-wrapper::before,
.ticker-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.ticker-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #f8fbff 0%, transparent 100%);
}
.ticker-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #f8fbff 0%, transparent 100%);
}

.ticker-track {
  overflow: hidden;
  padding: 10px 0;
}

.ticker-inner {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: tickerScrollLeft 28s linear infinite;
}

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

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

.ti-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 28px;
  background: #fff;
  border: 1px solid rgba(37,211,102,0.15);
  border-radius: 50px;
  margin-right: 14px;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: var(--transition);
  cursor: default;
}

.ti-item:hover {
  border-color: var(--wa-green);
  box-shadow: 0 4px 20px rgba(37,211,102,0.18);
  transform: translateY(-2px);
}

.ti-item strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a2a3a;
}

.ti-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}

/* ================================================
   HERO — additional helpers
   ================================================ */
.hero-container { position: relative; z-index: 5; }

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,211,102,0.15);
  border: 1px solid rgba(37,211,102,0.35);
  color: #7fffa8;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 22px;
}

.hero-text-col { position: relative; z-index: 5; }

.hero-title {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-accent {
  background: linear-gradient(135deg, var(--wa-green) 0%, #7fffa8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 32px; }

.hero-trust-row span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  display: inline-flex;
  align-items: center;
}

.hero-img-col { position: relative; }

/* Bubble position aliases */
.bubble-1 { top: 2%;    right: 5%;   animation-delay: 0s; }
.bubble-2 { top: 18%;   right: 2%;   animation-delay: -2s; font-size: 0.75rem; }
.bubble-3 { bottom: 2%; right: 4%;   animation-delay: -4s; }
.bubble-4 { bottom: 2%; left: 2%;    animation-delay: -1.5s; font-size: 0.72rem; }

/* Stat card position aliases (used in HTML as stat-card-N) */
.stat-card-1 { bottom: 28%; left: -8%;  animation-delay: 0s; }
.stat-card-2 { top: 8%;    right: -6%; animation-delay: -2s; }
.stat-card-3 { top: 8%;    left: -8%;  animation-delay: -1s; }
.stat-card-4 { bottom: 8%; right: -6%; animation-delay: -3s; }
.stat-card-5 { bottom: 8%; left: -8%;  animation-delay: -4s; }
.stat-card-6 { top: 40%;   right: -6%; animation-delay: -1.5s; }

.stat-icon-wrap {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}

.stat-number { font-size: 1.25rem; font-weight: 800; color: #1a2a3a; line-height: 1; }
.stat-label  { font-size: 0.68rem; color: #6c7a8d; font-weight: 500; margin-top: 3px; }

/* ================================================
   SECTION COMMON — eyebrow / heading / desc
   ================================================ */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #e1306c;
  background: rgba(225,48,108,0.08);
  border: 1px solid rgba(225,48,108,0.2);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.ai-eyebrow {
  color: #818cf8 !important;
  background: rgba(99,102,241,0.08) !important;
  border-color: rgba(99,102,241,0.25) !important;
}

.section-heading {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 26px;
}

.text-gradient {
  background: linear-gradient(135deg, #e1306c, #f56040, #fcaf45);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
}

.feature-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.feature-checklist li:last-child { border-bottom: none; }

.feature-checklist li i {
  color: var(--wa-green);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.btn-section-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #e1306c, #833ab4);
  color: #fff;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 6px 25px rgba(225,48,108,0.4);
  transition: var(--transition);
}

.btn-section-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(225,48,108,0.5);
  color: #fff;
}

/* ================================================
   INSTAGRAM SCREENSHOTS
   ================================================ */
.instagram-screenshots-wrap {
  position: relative;
  height: 420px;
}

.insta-ss {
  position: absolute;
  border-radius: 16px;
  box-shadow: 0 16px 50px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
}

.insta-ss-main {
  width: 65%;
  top: 0; left: 0;
  z-index: 1;
  animation: statCardFloat 5s ease-in-out infinite;
}

.insta-ss-overlay {
  width: 55%;
  bottom: 0; right: 0;
  z-index: 2;
  animation: statCardFloat 5s ease-in-out infinite;
  animation-delay: -2.5s;
}

.insta-ss-card {
  width: 42%;
  bottom: 30%; right: 5%;
  z-index: 3;
  animation: statCardFloat 5s ease-in-out infinite;
  animation-delay: -1.5s;
}

/* ================================================
   AI DASHBOARD
   ================================================ */
.ai-dashboard-wrap {
  position: relative;
  z-index: 5;
  padding-bottom: 130px;
}

.ai-dashboard-img {
  width: 100%;
  margin-left: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.07);
}

.ai-dashboard-secondary {
  position: absolute;
  bottom: -10px;
  right: -16px;
  left: auto;
  width: 66%;
  z-index: 4;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.55);
  border: 2px solid rgba(255,255,255,0.12);
  transform: perspective(1200px) rotateY(-3deg) rotateX(-1deg);
  transition: transform 0.5s ease;
}

.ai-dashboard-wrap:hover .ai-dashboard-secondary {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
}

.ai-dashboard-secondary-img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.ai-floating-stat {
  position: absolute;
  bottom: -14px; left: -14px;
  background: #fff;
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  animation: statCardFloat 4s ease-in-out infinite;
}

.ai-floating-tag {
  position: absolute;
  top: -14px; right: -14px;
  background: #fff;
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a2a3a;
  animation: statCardFloat 4s ease-in-out infinite;
  animation-delay: -2s;
}

.ai-badge-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.ai-badge-row .ai-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-direction: row;
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.25);
  color: #a5b4fc;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  flex: unset;
  min-width: unset;
}

.ai-badge-row .ai-pill:hover { transform: translateY(-2px); }

/* ================================================
   TICKER — Bootstrap icon based
   ================================================ */
.ticker-label-row {
  display: block;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--wa-dark), var(--primary));
  display: inline-block;
  padding: 4px 16px;
  border-radius: 20px;
  margin: 0 auto 16px;
  display: block;
  width: fit-content;
}

.ticker-track {
  overflow: hidden;
  padding: 8px 0;
  position: relative;
  /* fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.ticker-inner {
  display: flex;
  align-items: center;
  width: max-content;
  animation: tickerScrollLeft 30s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 50px;
  padding: 9px 22px;
  margin-right: 12px;
  white-space: nowrap;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1a2a3a;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--transition);
  cursor: default;
}

.ticker-item:hover {
  box-shadow: 0 4px 20px rgba(37,211,102,0.18);
  border-color: rgba(37,211,102,0.3);
  transform: translateY(-2px);
}

.ti-ico {
  width: 30px; height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}

/* ================================================
   STATS BAND
   ================================================ */
.stats-band-section {
  padding: 48px 0;
  background: linear-gradient(135deg, #0f1923 0%, #0d3040 50%, #075E54 100%);
}

.stat-band-item { text-align: center; padding: 10px 0; }

.stat-band-number {
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, #fff, var(--wa-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-band-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  margin-top: 8px;
}

/* AI Marketing light-background override */
.ai-marketing-section.light-background {
  background: #f8fbff;
}

.ai-marketing-section.light-background .section-heading { color: #0f1923; }
.ai-marketing-section.light-background .section-desc { color: var(--text-muted); }
.ai-marketing-section.light-background .section-eyebrow { color: #6366f1; background: rgba(99,102,241,0.08); border-color: rgba(99,102,241,0.2); }
.ai-marketing-section.light-background .feature-checklist li { color: #2d3748; border-bottom-color: rgba(0,0,0,0.06); }
.ai-marketing-section.light-background .feature-checklist li i { color: #6366f1; }
.ai-marketing-section.light-background .ai-badge-row .ai-pill { background: rgba(99,102,241,0.08); border-color: rgba(99,102,241,0.2); color: #4f46e5; }
.ai-marketing-section.light-background .ai-floating-stat,
.ai-marketing-section.light-background .ai-floating-tag { background: #fff; }

/* Instagram suite dark section */
.instagram-suite-section .section-eyebrow { color: #e1306c; }
.instagram-suite-section .feature-checklist li { color: rgba(255,255,255,0.85); }

/* ================================================
   INSTAGRAM MOCKUP STACK
   ================================================ */
.ig-mockup-stack {
  position: relative;
  padding-bottom: 80px;
  margin-left: -30px;
  z-index: 5;
}

/* Main screenshot — full width, slightly tilted */
.ig-mock-main {
  position: relative;
  width: 100%;
  z-index: 3;
  margin-left: 0;
  transform: perspective(1000px) rotateY(4deg) rotateX(1deg);
  transition: var(--transition);
}

.ig-mock-main:hover { transform: perspective(1000px) rotateY(0deg) rotateX(0deg); }

.ig-mock-main img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.1);
  display: block;
}

/* DM screenshot — floats bottom-right, offset */
.ig-mock-dm {
  position: absolute;
  bottom: -50px;
  right: -24px;
  width: 65%;
  z-index: 4;
  animation: statCardFloat 5s ease-in-out infinite;
  animation-delay: -2.5s;
}

.ig-mock-dm img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 16px 50px rgba(225,48,108,0.4);
  border: 2px solid rgba(225,48,108,0.25);
  display: block;
}

/* Analytics card — hidden on this layout, shown via absolute on mock-main */
.ig-mock-analytics { display: none; }

.ig-badge {
  position: absolute;
  background: rgba(20, 6, 18, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(225,48,108,0.35);
  border-radius: 14px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 30px rgba(225,48,108,0.25);
  z-index: 10;
  animation: statCardFloat 4s ease-in-out infinite;
}

.ig-badge-followers {
  top: -14px; right: -14px;
  animation-delay: -1s;
}

.ig-badge-heart {
  bottom: 30%; left: -16px;
  animation-delay: -3s;
}

.ig-badge i { font-size: 1.2rem; flex-shrink: 0; }
.ig-badge-num { font-size: 1.1rem; font-weight: 800; color: #fff; line-height: 1; }
.ig-badge-lbl { font-size: 0.68rem; color: rgba(255,255,255,0.55); font-weight: 500; margin-top: 2px; }

.ig-glow {
  position: absolute;
  top: 20%; left: 20%;
  width: 60%; height: 60%;
  background: radial-gradient(ellipse, rgba(225,48,108,0.25) 0%, transparent 70%);
  filter: blur(30px);
  z-index: 0;
  pointer-events: none;
}

/* Instagram feature grid */
.ig-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.ig-feat-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(225,48,108,0.18);
  border-radius: 14px;
  padding: 14px 16px;
  transition: var(--transition);
}

.ig-feat-card:hover {
  background: rgba(225,48,108,0.08);
  border-color: rgba(225,48,108,0.35);
  transform: translateY(-2px);
}

.ig-feat-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(225,48,108,0.25), rgba(131,58,180,0.15));
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: #f472b6;
  flex-shrink: 0;
}

.ig-feat-title { font-size: 0.82rem; font-weight: 700; color: #fff; line-height: 1.2; }
.ig-feat-desc  { font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-top: 2px; }

.text-gradient-ig {
  background: linear-gradient(135deg, #e1306c, #f56040, #fcaf45);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-ig-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #e1306c, #833ab4);
  color: #fff;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 6px 25px rgba(225,48,108,0.4);
  transition: var(--transition);
}

.btn-ig-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(225,48,108,0.55);
  color: #fff;
}

@media (max-width: 991px) {
  .ig-mockup-stack { height: 320px; }
  .ig-badge-followers, .ig-badge-heart { display: none; }
  .ig-feature-grid { grid-template-columns: 1fr; }
}

/* ================================================
   INTEGRATIONS DETAIL SECTION
   ================================================ */
.integrations-detail-section {
  padding: 60px 0 60px;
  background: linear-gradient(170deg, #050e1a 0%, #0b1a2e 40%, #0d2030 100%);
  position: relative;
  overflow: hidden;
}

.integrations-detail-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 55px 55px;
  pointer-events: none;
}

/* Header */
.intd-header { margin-bottom: 48px; }

.intd-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #7dd3fc;
  background: rgba(125,211,252,0.10);
  border: 1px solid rgba(125,211,252,0.22);
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.intd-title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 10px;
}

.intd-gradient {
  background: linear-gradient(135deg, #96BF48, #F27A1A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.intd-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Row */
.intd-row { padding: 20px 0 36px; }

/* Divider between rows */
.intd-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  margin: 12px 0 28px;
}

/* Platform tag */
.intd-platform-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.shopify-tag {
  color: #96BF48;
  background: rgba(150,191,72,0.10);
  border: 1px solid rgba(150,191,72,0.25);
}
.trendyol-tag {
  color: #F27A1A;
  background: rgba(242,122,26,0.10);
  border: 1px solid rgba(242,122,26,0.25);
}

.shopify-icon-sm, .trendyol-icon-sm {
  width: 22px; height: 22px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; color: #fff; flex-shrink: 0;
}
.shopify-icon-sm { background: #96BF48; }
.trendyol-icon-sm { background: #F27A1A; }

/* Section headings & desc */
.intd-section-heading {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.intd-section-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.75;
  margin-bottom: 28px;
}

/* Feature list */
.intd-feature-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }

.intd-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 14px 18px;
  transition: var(--transition);
}

.intd-feat:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.13);
  transform: translateX(6px);
}

.intd-feat-icon {
  width: 40px; height: 40px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}

.intd-feat-title { font-size: 0.88rem; font-weight: 700; color: #fff; margin-bottom: 3px; }
.intd-feat-desc  { font-size: 0.78rem; color: rgba(255,255,255,0.50); }

/* Metrics row */
.intd-metrics-row {
  display: flex;
  gap: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 18px 24px;
}

.intd-metric { text-align: center; flex: 1; }
.im-num { font-size: 1.6rem; font-weight: 900; line-height: 1; margin-bottom: 4px; }
.im-lbl { font-size: 0.72rem; color: rgba(255,255,255,0.45); font-weight: 500; }

/* Visual wrap */
.intd-visual-wrap {
  position: relative;
  padding: 20px 10px 110px;
  min-height: 460px;
}

/* Main screenshot — full width */
.intd-screen-main {
  position: relative;
  z-index: 3;
  width: 100%;
  margin-left: auto;
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.5s ease;
}

.trendyol-wrap .intd-screen-main {
  margin-left: 0;
  margin-right: auto;
  transform: perspective(1200px) rotateY(5deg) rotateX(2deg);
}

.intd-visual-wrap:hover .intd-screen-main {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
}

/* Secondary screenshot — truly overlaps the main from the opposite corner */
.intd-screen-secondary {
  position: absolute;
  bottom: -30px;
  left: -16px;
  width: 66%;
  z-index: 5;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.65);
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.14);
  transform: perspective(1200px) rotateY(3deg) rotateX(-1deg);
  transition: transform 0.5s ease;
}

.trendyol-wrap .intd-screen-secondary {
  left: auto;
  right: -16px;
  transform: perspective(1200px) rotateY(-3deg) rotateX(-1deg);
}

.intd-visual-wrap:hover .intd-screen-secondary {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
}

.intd-screen-secondary img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.intd-screen-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.08);
  display: block;
}

/* Floating notifications */
.intd-notif {
  position: absolute;
  z-index: 10;
  background: rgba(15,25,40,0.95);
  backdrop-filter: blur(16px);
  border-radius: 14px;
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  animation: statCardFloat 4s ease-in-out infinite;
  font-size: 0.8rem;
}

.notif-shopify-1 { top: 0px; right: -10px; border: 1px solid rgba(150,191,72,0.3); animation-delay: 0s; }
.notif-shopify-2 { bottom: 50px; left: -10px; border: 1px solid rgba(37,211,102,0.3); animation-delay: -2s; }
.notif-trendyol-1 { top: 0px; left: -10px; border: 1px solid rgba(242,122,26,0.3); animation-delay: -1s; }
.notif-trendyol-2 { bottom: 50px; right: -10px; border: 1px solid rgba(242,122,26,0.2); animation-delay: -3s; }

.notif-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: #fff; flex-shrink: 0;
}

.notif-title { font-weight: 700; color: #fff; line-height: 1.2; }
.notif-desc { font-size: 0.72rem; color: rgba(255,255,255,0.55); margin-top: 2px; }
.notif-time { font-size: 0.68rem; color: rgba(255,255,255,0.4); margin-left: auto; flex-shrink: 0; align-self: flex-start; }

/* Mini stat badge */
.intd-mini-stat {
  position: absolute;
  z-index: 10;
  border-radius: 14px;
  padding: 12px 18px;
  text-align: center;
  backdrop-filter: blur(16px);
  animation: statCardFloat 4s ease-in-out infinite;
  animation-delay: -1.5s;
}

.stat-shopify {
  bottom: 5px; right: 20px;
  background: rgba(150,191,72,0.15);
  border: 1px solid rgba(150,191,72,0.35);
}

.stat-trendyol {
  bottom: 5px; left: 20px;
  background: rgba(242,122,26,0.15);
  border: 1px solid rgba(242,122,26,0.35);
}

.ms-num { font-size: 1.4rem; font-weight: 900; color: #fff; line-height: 1; }
.ms-lbl { font-size: 0.68rem; color: rgba(255,255,255,0.6); font-weight: 600; margin-top: 3px; }

/* Brand badge */
.intd-brand-badge {
  position: absolute;
  z-index: 10;
  background: rgba(15,25,40,0.95);
  backdrop-filter: blur(16px);
  border-radius: 50px;
  padding: 8px 16px 8px 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
  animation: statCardFloat 5s ease-in-out infinite;
  animation-delay: -0.8s;
}

.shopify-badge { top: 38%; left: -20px; border: 1px solid rgba(150,191,72,0.3); }
.trendyol-badge { top: 38%; right: -20px; border: 1px solid rgba(242,122,26,0.3); }

.brand-logo {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: #fff; flex-shrink: 0;
}

.shopify-logo-box { background: #96BF48; }
.trendyol-logo-box { background: #F27A1A; }

.brand-name { font-size: 0.82rem; font-weight: 700; color: #fff; line-height: 1.2; }
.brand-status { font-size: 0.68rem; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 4px; margin-top: 2px; }

.live-dot {
  width: 6px; height: 6px;
  background: #25D366;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

/* Glow */
.intd-glow {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}

.shopify-glow { background: rgba(150,191,72,0.18); top: 20%; right: 10%; }
.trendyol-glow { background: rgba(242,122,26,0.18); top: 20%; left: 10%; }

/* Bottom CTA */
.intd-cta-text { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-bottom: 16px; }

.btn-intd-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #96BF48, #F27A1A);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(150,191,72,0.35);
  transition: var(--transition);
}

.btn-intd-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(150,191,72,0.50);
  color: #fff;
}

@media (max-width: 991px) {
  .intd-notif { display: none; }
  .intd-mini-stat, .intd-brand-badge { display: none; }
  .intd-screen-main, .trendyol-wrap .intd-screen-main { transform: none; }
}

/* ================================================
   AI MARKETING SECTION — dark mode overrides
   ================================================ */
.ai-marketing-section:not(.light-background) .section-heading { color: #fff; }
.ai-marketing-section:not(.light-background) .section-desc { color: rgba(255,255,255,0.65); }
.ai-marketing-section:not(.light-background) .section-eyebrow {
  color: #818cf8;
  background: rgba(99,102,241,0.10);
  border-color: rgba(99,102,241,0.28);
}
.ai-marketing-section:not(.light-background) .feature-checklist li { color: rgba(255,255,255,0.85); border-bottom-color: rgba(255,255,255,0.06); }
.ai-marketing-section:not(.light-background) .feature-checklist li i { color: #818cf8; }

