.elementor-widget .tippy-tooltip .tippy-content{text-align:center;}/* Start custom CSS for html, class: .elementor-element-9cc2700 *//* ==========================================
   PREMIUM SETUP GUIDE PAGE
========================================== */
.premium-setup-page {
  --primary: #0044ff;
  --secondary: #00d4ff;
  --text-dark: #0a0f1d;
  --text-gray: #526077;
  --bg-color: #f4f7fb;
  --card-bg: #ffffff;
  --border-radius: 24px;
  
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-color); /* Cool techy grey */
  color: var(--text-dark);
  padding: 100px 5% 120px;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Base Typo */
h1, h2, h3, h4 { margin: 0; font-weight: 800; color: var(--text-dark); }
p { margin: 0; line-height: 1.6; }

/* Large Floating Background Glows */
.glow-orb {
  position: absolute; 
  width: 450px; height: 450px;
  border-radius: 50%; 
  filter: blur(140px); 
  z-index: -1; 
  opacity: 0.25;
}
.top-left { background: var(--primary); top: -10%; left: -10%; }
.top-right { background: var(--secondary); top: 10%; right: -10%; }

/* ==================================
   1. HERO SECTION
=================================== */
.setup-hero { 
  text-align: center; 
  max-width: 900px; 
  margin: 0 auto 90px; 
}
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; color: var(--primary);
  padding: 8px 18px; border-radius: 50px;
  font-weight: 700; font-size: 13px; text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(0,68,255,0.08); 
  margin-bottom: 25px;
}
.setup-hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem); 
  letter-spacing: -1.5px; 
  margin-bottom: 25px;
  line-height: 1.1;
}
.setup-hero h1 span {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent;
}
.hero-desc {
  font-size: 1.15rem; color: var(--text-gray); 
  margin-bottom: 35px; max-width: 800px; margin-left: auto; margin-right: auto;
}
.hero-desc strong { color: var(--text-dark); }

/* The "Works with all apps" Banner */
.universal-banner {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white; 
  padding: 16px 28px; 
  border-radius: 18px;
  display: inline-flex; align-items: center; gap: 15px;
  font-size: 16px; 
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.25);
  transition: transform 0.3s;
}
.universal-banner:hover { transform: translateY(-3px); }
.universal-banner i { font-size: 28px; }

/* ==================================
   2. SECTION TITLES
=================================== */
.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 { font-size: clamp(2rem, 3vw, 2.5rem); margin-bottom: 12px; letter-spacing: -0.5px;}
.section-title p { font-size: 1.1rem; color: var(--text-gray); max-width: 750px; margin: auto; }

/* ==================================
   3. DEVICE GRID CARDS
=================================== */
.device-section { margin-bottom: 90px; }
.device-grid {
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
  gap: 25px;
  max-width: 1200px; margin: auto;
}
.device-card {
  background: var(--card-bg); padding: 35px 25px; border-radius: var(--border-radius);
  text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); 
  position: relative; border: 1px solid #edf2f7;
}
.device-card:hover {
  transform: translateY(-8px); border-color: var(--secondary);
  box-shadow: 0 20px 40px rgba(0,68,255,0.08);
}
.device-icon {
  font-size: 45px; color: var(--primary); margin-bottom: 20px;
  background: #e6edff; padding: 18px; border-radius: 20px;
  display: inline-block;
}
.device-card h3 { font-size: 20px; margin-bottom: 10px; }
.device-card p { font-size: 14.5px; color: var(--text-gray); margin-bottom: 25px; min-height: 40px;}

.rec-app {
  display: block; background: #f8fafc; color: var(--primary); 
  font-size: 13.5px; font-weight: 700; padding: 10px 12px; 
  border-radius: 12px; border: 1px dashed #cbd5e1;
}

/* ==================================
   4. APP SETUP INSTRUCTIONS
=================================== */
.app-setup-section { margin-bottom: 90px; }
.setup-steps-container {
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); 
  gap: 30px;
  max-width: 1200px; margin: auto;
}

.app-setup-box {
  background: var(--card-bg); border-radius: var(--border-radius); padding: 40px 35px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.03); transition: 0.4s;
  border-top: 6px solid transparent;
}
.app-setup-box:nth-child(1) { border-top-color: #fb8500; }
.app-setup-box:nth-child(2) { border-top-color: #0044ff; }
.app-setup-box:nth-child(3) { border-top-color: #e11d48; }

.app-setup-box:hover { 
  transform: translateY(-8px); 
  box-shadow: 0 25px 50px rgba(0,0,0,0.06); 
}

/* App Header & Badges */
.app-header { display: flex; align-items: center; gap: 15px; margin-bottom: 25px; }
.app-icon {
  width: 65px; height: 65px; border-radius: 18px; 
  display: flex; justify-content: center; align-items: center;
  font-size: 32px; color: white; box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.tivimate-bg { background: linear-gradient(135deg, #ffb703, #fb8500); }
.smarters-bg { background: linear-gradient(135deg, #00d4ff, #0044ff); }
.ibo-bg { background: linear-gradient(135deg, #ff007b, #c1121f); }

.app-title h3 { font-size: 22px; margin-bottom: 8px; }
.tag { font-size: 11.5px; font-weight: 800; padding: 4px 12px; border-radius: 8px; text-transform: uppercase; }
.best-tag { background: #fffcf0; color: #ea580c; border: 1px solid #fde68a;}
.universal-tag { background: #eff6ff; color: #2563eb; border: 1px solid #bfdbfe;}
.tv-tag { background: #fff1f2; color: #e11d48; border: 1px solid #fecdd3;}

/* Lists & Body */
.app-body p { font-size: 15.5px; color: var(--text-gray); margin-bottom: 25px; }
.app-body h4 { font-size: 17px; margin-bottom: 15px; color: var(--text-dark); }
.app-body ol { padding-left: 20px; color: var(--text-dark); font-size: 15.5px; font-weight: 600;}
.app-body li { margin-bottom: 12px; line-height: 1.6; color: var(--text-gray); padding-left: 5px;}
.app-body li strong { color: var(--primary); } /* Highlighting instructions nicely */

/* ==================================
   5. HELP CTA BANNER
=================================== */
.help-banner {
  background: linear-gradient(135deg, #0a0f1d 0%, #1e293b 100%);
  border-radius: var(--border-radius); padding: 60px 50px; text-align: center;
  color: white; max-width: 1000px; margin: auto; 
  box-shadow: 0 25px 60px rgba(10,15,29,0.3);
  background-image: radial-gradient(circle at top right, rgba(0, 68, 255, 0.4) 0%, transparent 60%);
}
.help-banner h2 { font-size: 30px; margin-bottom: 15px; color: white; }
.help-banner p { font-size: 17px; color: #94a3b8; max-width: 700px; margin: 0 auto 35px; line-height: 1.7;}
.support-btn {
  display: inline-flex; align-items: center; gap: 8px; background: var(--primary);
  color: white; padding: 18px 36px; border-radius: 50px; font-weight: 700; text-decoration: none;
  transition: 0.3s; font-size: 16px; box-shadow: 0 10px 20px rgba(0,68,255,0.4);
}
.support-btn:hover { background: var(--secondary); transform: translateY(-4px); box-shadow: 0 15px 30px rgba(0,212,255,0.5);}

/* ==================================
   6. ANIMATIONS
=================================== */
.animate-up { opacity: 0; animation: fadeUp 0.8s forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ==================================
   7. MOBILE RESPONSIVENESS
=================================== */
@media (max-width: 900px) {
  .setup-steps-container { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .premium-setup-page { padding: 80px 15px 60px; }
  .setup-hero { margin-bottom: 60px; }
  .setup-hero h1 { font-size: 2.4rem; padding: 0 10px;}
  .hero-desc { font-size: 1.05rem; }
  
  /* Make the universal banner stack nicely on phones */
  .universal-banner { 
    flex-direction: column; text-align: center; 
    font-size: 15px; padding: 20px;
  }
  .universal-banner i { font-size: 32px; margin-bottom: -5px;}
  
  .section-title h2 { font-size: 2rem; }
  .device-grid { gap: 15px; }
  .device-card { padding: 30px 20px; }
  
  .app-setup-box { padding: 30px 25px; }
  .app-title h3 { font-size: 20px; }
  .app-icon { width: 55px; height: 55px; font-size: 26px; }
  
  .help-banner { padding: 45px 25px; }
  .help-banner h2 { font-size: 24px; }
  .support-btn { width: 100%; justify-content: center; } /* Finger-friendly giant button */
}/* End custom CSS */