/* Start custom CSS for html, class: .elementor-element-4e7e500 *//* =========================================
   SETUP GUIDE HERO
========================================= */

.setup-hero {
  position: relative;
  overflow: hidden;

  padding: 140px 0 120px;

  background: #050706;

  font-family: "Inter", sans-serif;

  color: #FFFFFF;
}


/* =========================================
   CONTAINER
========================================= */

.setup-hero-container {
  position: relative;
  z-index: 2;

  width: 92%;
  max-width: 1180px;

  margin: 0 auto;
}


/* =========================================
   GLOW
========================================= */

.setup-hero-glow {
  position: absolute;

  width: 480px;
  height: 480px;

  border-radius: 50%;

  background: rgba(0,255,136,0.08);

  filter: blur(150px);

  pointer-events: none;
}


.setup-hero-glow-left {
  top: 5%;
  left: -260px;
}


.setup-hero-glow-right {
  right: -260px;
  bottom: -10%;
}


/* =========================================
   CONTENT
========================================= */

.setup-hero-content {
  position: relative;

  max-width: 850px;

  margin: 0 auto;

  text-align: center;
}


/* =========================================
   BADGE
========================================= */

.setup-hero-badge {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 8px 16px;

  margin-bottom: 22px;

  background: rgba(0,255,136,0.06);

  border: 1px solid rgba(0,255,136,0.25);

  border-radius: 50px;

  color: #00FF88;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 1.5px;

  text-transform: uppercase;
}


/* =========================================
   HEADING
========================================= */

.setup-hero-content h1 {
  margin: 0;

  font-size: clamp(45px, 6vw, 76px);

  line-height: 1;

  font-weight: 900;

  letter-spacing: -4px;

  color: #FFFFFF;
}


.setup-hero-content h1 span {
  display: block;

  color: #00FF88;

  background: none;

  -webkit-background-clip: initial;
  -webkit-text-fill-color: #00FF88;

  background-clip: initial;
}


/* =========================================
   DESCRIPTION
========================================= */

.setup-hero-content > p {
  max-width: 650px;

  margin: 25px auto 0;

  color: #929D97;

  font-size: 16px;

  line-height: 1.75;

  font-weight: 400;
}


/* =========================================
   BUTTONS
========================================= */

.setup-hero-buttons {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 12px;

  margin-top: 35px;
}


.setup-primary,
.setup-secondary {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 10px;

  min-height: 50px;

  padding: 0 23px;

  border-radius: 12px;

  text-decoration: none;

  font-size: 13px;

  font-weight: 800;

  transition: 0.25s ease;
}


/* =========================================
   PRIMARY
========================================= */

.setup-primary {
  background: linear-gradient(
    90deg,
    #00FF88,
    #00D875
  );

  color: #031009;

  box-shadow:
    0 10px 30px rgba(0,255,136,0.12);
}


.setup-primary span {
  font-size: 18px;

  transition: 0.25s ease;
}


.setup-primary:hover {
  transform: translateY(-3px);

  box-shadow:
    0 14px 38px rgba(0,255,136,0.22);
}


.setup-primary:hover span {
  transform: translateX(4px);
}


/* =========================================
   SECONDARY
========================================= */

.setup-secondary {
  color: #FFFFFF;

  background: rgba(255,255,255,0.02);

  border: 1px solid rgba(255,255,255,0.12);
}


.setup-secondary:hover {
  transform: translateY(-3px);

  color: #031009;

  background: #00FF88;

  border-color: #00FF88;
}


/* =========================================
   TRUST
========================================= */

.setup-hero-trust {
  display: flex;

  align-items: center;
  justify-content: center;

  flex-wrap: wrap;

  gap: 28px;

  margin-top: 38px;
}


.setup-trust-item {
  display: flex;

  align-items: center;

  gap: 8px;

  color: #7E8B83;

  font-size: 11px;

  font-weight: 600;
}


.setup-trust-item span {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: 18px;
  height: 18px;

  border-radius: 50%;

  background: rgba(0,255,136,0.07);

  color: #00FF88;

  font-size: 10px;

  font-weight: 900;
}


/* =========================================
   DECORATIVE LINE
========================================= */

.setup-hero-content::before {
  content: "";

  position: absolute;

  top: -60px;
  left: 50%;

  width: 180px;
  height: 1px;

  transform: translateX(-50%);

  background: linear-gradient(
    90deg,
    transparent,
    rgba(0,255,136,0.45),
    transparent
  );
}


/* =========================================
   BOTTOM LINE
========================================= */

.setup-hero-content::after {
  content: "";

  position: absolute;

  bottom: -60px;
  left: 50%;

  width: 180px;
  height: 1px;

  transform: translateX(-50%);

  background: linear-gradient(
    90deg,
    transparent,
    rgba(0,255,136,0.35),
    transparent
  );
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 768px) {

  .setup-hero {
    padding: 100px 0 90px;
  }

  .setup-hero-content h1 {
    font-size: clamp(40px, 9vw, 60px);

    letter-spacing: -3px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .setup-hero {
    padding: 80px 0;

  }

  .setup-hero-content h1 {
    font-size: clamp(36px, 11vw, 48px);

    letter-spacing: -2.5px;
  }

  .setup-hero-content > p {
    font-size: 14px;

    line-height: 1.7;
  }

  .setup-hero-buttons {
    flex-direction: column;

    width: 100%;
  }

  .setup-primary,
  .setup-secondary {
    width: 100%;
  }

  .setup-hero-trust {
    flex-direction: column;

    gap: 13px;
  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 390px) {

  .setup-hero {
    padding: 70px 0;
  }

  .setup-hero-content h1 {
    font-size: 35px;

    letter-spacing: -2px;
  }

  .setup-hero-badge {
    font-size: 9px;
  }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-19431c7 *//* =========================================
   SETUP GUIDE - STEP 2
========================================= */

.setup-step-section {
  position: relative;
  overflow: hidden;

  padding: 120px 0;

  background: #050706;

  font-family: "Inter", sans-serif;

  color: #FFFFFF;
}


/* =========================================
   CONTAINER
========================================= */

.setup-step-container {
  position: relative;
  z-index: 2;

  width: 92%;
  max-width: 1180px;

  margin: 0 auto;
}


/* =========================================
   GLOW
========================================= */

.setup-step-glow {
  position: absolute;

  width: 430px;
  height: 430px;

  border-radius: 50%;

  background: rgba(0,255,136,0.07);

  filter: blur(145px);

  pointer-events: none;
}

.setup-step-glow-left {
  top: 10%;
  left: -250px;
}

.setup-step-glow-right {
  bottom: 5%;
  right: -250px;
}


/* =========================================
   HEADER
========================================= */

.setup-step-header {
  max-width: 720px;

  margin: 0 auto 65px;

  text-align: center;
}


/* =========================================
   BADGE
========================================= */

.setup-step-badge {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 8px 15px;

  margin-bottom: 20px;

  background: rgba(0,255,136,0.06);

  border: 1px solid rgba(0,255,136,0.25);

  border-radius: 50px;

  color: #00FF88;

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 1.5px;
}


/* =========================================
   TITLE
========================================= */

.setup-step-header h2 {
  margin: 0;

  color: #FFFFFF;

  font-size: clamp(40px, 5vw, 64px);

  line-height: 1.05;

  font-weight: 900;

  letter-spacing: -3px;
}


.setup-step-header h2 span {
  display: block;

  color: #00FF88;
}


/* =========================================
   DESCRIPTION
========================================= */

.setup-step-header p {
  max-width: 620px;

  margin: 22px auto 0;

  color: #929D97;

  font-size: 17px;

  line-height: 1.7;
}


/* =========================================
   MAIN CARD
========================================= */

.setup-step-card {
  display: grid;

  grid-template-columns: 0.8fr 1.2fr;

  gap: 0;

  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.025),
      transparent 50%
    ),
    #0D1210;

  border: 1px solid rgba(255,255,255,0.08);

  border-radius: 24px;

  box-shadow:
    0 25px 70px rgba(0,0,0,0.35);

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}


.setup-step-card:hover {
  border-color: rgba(0,255,136,0.25);

  box-shadow:
    0 30px 80px rgba(0,0,0,0.4),
    0 0 40px rgba(0,255,136,0.05);
}


/* =========================================
   VISUAL
========================================= */

.setup-step-visual {
  position: relative;

  min-height: 510px;

  display: flex;

  align-items: center;
  justify-content: center;

  overflow: hidden;

  background:
    radial-gradient(
      circle at center,
      rgba(0,255,136,0.10),
      transparent 55%
    ),
    #090D0B;

  border-right: 1px solid rgba(255,255,255,0.07);
}


/* =========================================
   STEP NUMBER
========================================= */

.setup-step-number {
  position: absolute;

  top: 25px;
  left: 28px;

  color: rgba(255,255,255,0.13);

  font-size: 12px;

  font-weight: 900;

  letter-spacing: 1.5px;
}


/* =========================================
   DEVICE ICON
========================================= */

.setup-device-icon {
  position: relative;
  z-index: 3;

  display: flex;

  align-items: center;
  justify-content: center;

  width: 145px;
  height: 145px;

  border-radius: 35px;

  background: rgba(0,255,136,0.07);

  border: 1px solid rgba(0,255,136,0.25);

  color: #00FF88;

  box-shadow:
    0 0 45px rgba(0,255,136,0.08);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}


.setup-device-icon svg {
  width: 65px;
  height: 65px;
}


.setup-step-card:hover .setup-device-icon {
  transform: translateY(-7px);

  box-shadow:
    0 0 65px rgba(0,255,136,0.15);
}


/* =========================================
   VISUAL GLOW
========================================= */

.setup-visual-glow {
  position: absolute;

  width: 240px;
  height: 240px;

  border-radius: 50%;

  background: rgba(0,255,136,0.08);

  filter: blur(70px);

  pointer-events: none;
}


/* =========================================
   CONTENT
========================================= */

.setup-step-content {
  padding: 48px 45px;
}


/* =========================================
   LABEL
========================================= */

.setup-step-label {
  display: block;

  margin-bottom: 13px;

  color: #00FF88;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 1.5px;
}


/* =========================================
   CONTENT TITLE
========================================= */

.setup-step-content h3 {
  max-width: 500px;

  margin: 0 0 15px;

  color: #FFFFFF;

  font-size: 34px;

  line-height: 1.15;

  font-weight: 900;

  letter-spacing: -1.5px;
}


/* =========================================
   DESCRIPTION
========================================= */

.setup-step-description {
  max-width: 560px;

  margin: 0;

  color: #929D97;

  font-size: 14px;

  line-height: 1.75;
}


/* =========================================
   CHECK LIST
========================================= */

.setup-check-list {
  display: flex;

  flex-direction: column;

  gap: 18px;

  margin-top: 30px;
}


/* =========================================
   CHECK ITEM
========================================= */

.setup-check-item {
  display: flex;

  align-items: flex-start;

  gap: 13px;
}


/* =========================================
   CHECK ICON
========================================= */

.setup-check-icon {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 25px;
  height: 25px;

  flex-shrink: 0;

  margin-top: 2px;

  border-radius: 50%;

  background: rgba(0,255,136,0.08);

  border: 1px solid rgba(0,255,136,0.20);

  color: #00FF88;

  font-size: 12px;

  font-weight: 900;
}


/* =========================================
   CHECK TITLE
========================================= */

.setup-check-item strong {
  display: block;

  margin-bottom: 4px;

  color: #FFFFFF;

  font-size: 13px;

  font-weight: 800;
}


/* =========================================
   CHECK DESCRIPTION
========================================= */

.setup-check-item p {
  margin: 0;

  color: #7E8B83;

  font-size: 12px;

  line-height: 1.55;
}


/* =========================================
   TIP
========================================= */

.setup-tip {
  display: flex;

  align-items: flex-start;

  gap: 12px;

  margin-top: 30px;

  padding: 16px 18px;

  background: rgba(0,255,136,0.035);

  border: 1px solid rgba(0,255,136,0.12);

  border-radius: 13px;
}


/* =========================================
   TIP ICON
========================================= */

.setup-tip-icon {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 24px;
  height: 24px;

  flex-shrink: 0;

  border-radius: 50%;

  background: #00FF88;

  color: #031009;

  font-size: 12px;

  font-weight: 900;
}


/* =========================================
   TIP TEXT
========================================= */

.setup-tip strong {
  display: block;

  margin-bottom: 3px;

  color: #FFFFFF;

  font-size: 12px;

  font-weight: 800;
}


.setup-tip p {
  margin: 0;

  color: #7E8B83;

  font-size: 11px;

  line-height: 1.5;
}


/* =========================================
   BOTTOM
========================================= */

.setup-step-bottom {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 18px;

  margin-top: 30px;
}


/* =========================================
   PROGRESS
========================================= */

.setup-progress {
  display: flex;

  align-items: center;
}


/* =========================================
   DOT
========================================= */

.setup-progress-dot {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: rgba(255,255,255,0.15);

  border: 1px solid rgba(255,255,255,0.15);
}


.setup-progress-dot.active {
  background: #00FF88;

  border-color: #00FF88;

  box-shadow:
    0 0 12px rgba(0,255,136,0.5);
}


/* =========================================
   LINE
========================================= */

.setup-progress-line {
  width: 35px;
  height: 1px;

  background: rgba(255,255,255,0.12);
}


.setup-progress-dot.active + .setup-progress-line {
  background: rgba(0,255,136,0.35);
}


/* =========================================
   PROGRESS TEXT
========================================= */

.setup-progress-text {
  color: #7E8B83;

  font-size: 11px;

  font-weight: 600;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

  .setup-step-card {
    grid-template-columns: 1fr;
  }

  .setup-step-visual {
    min-height: 360px;

    border-right: none;

    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  .setup-step-content {
    padding: 40px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .setup-step-section {
    padding: 80px 0;
  }

  .setup-step-header {
    margin-bottom: 45px;
  }

  .setup-step-header h2 {
    font-size: clamp(36px, 11vw, 48px);

    letter-spacing: -2px;
  }

  .setup-step-header p {
    font-size: 15px;
  }

  .setup-step-card {
    border-radius: 20px;
  }

  .setup-step-visual {
    min-height: 290px;
  }

  .setup-device-icon {
    width: 110px;
    height: 110px;

    border-radius: 28px;
  }

  .setup-device-icon svg {
    width: 50px;
    height: 50px;
  }

  .setup-step-content {
    padding: 30px 24px;
  }

  .setup-step-content h3 {
    font-size: 28px;

    letter-spacing: -1px;
  }

  .setup-step-description {
    font-size: 13px;
  }

  .setup-check-list {
    gap: 16px;
  }

  .setup-step-bottom {
    margin-top: 24px;
  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 390px) {

  .setup-step-section {
    padding: 70px 0;
  }

  .setup-step-visual {
    min-height: 260px;
  }

  .setup-step-content {
    padding: 25px 20px;
  }

  .setup-step-content h3 {
    font-size: 25px;
  }

  .setup-step-header h2 {
    font-size: 35px;
  }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b44c412 *//* =========================================
   SETUP GUIDE - STEP 3
========================================= */

.setup3-section {
  position: relative;
  overflow: hidden;

  padding: 120px 0;

  background: #050706;

  font-family: "Inter", sans-serif;

  color: #FFFFFF;
}


/* =========================================
   CONTAINER
========================================= */

.setup3-container {
  position: relative;
  z-index: 2;

  width: 92%;
  max-width: 1180px;

  margin: 0 auto;
}


/* =========================================
   GLOW
========================================= */

.setup3-glow {
  position: absolute;

  width: 430px;
  height: 430px;

  border-radius: 50%;

  background: rgba(0,255,136,0.07);

  filter: blur(145px);

  pointer-events: none;
}

.setup3-glow-left {
  top: 8%;
  left: -250px;
}

.setup3-glow-right {
  bottom: 5%;
  right: -250px;
}


/* =========================================
   HEADER
========================================= */

.setup3-header {
  max-width: 720px;

  margin: 0 auto 65px;

  text-align: center;
}


/* =========================================
   BADGE
========================================= */

.setup3-badge {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 8px 15px;

  margin-bottom: 20px;

  background: rgba(0,255,136,0.06);

  border: 1px solid rgba(0,255,136,0.25);

  border-radius: 50px;

  color: #00FF88;

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 1.5px;
}


/* =========================================
   HEADER TITLE
========================================= */

.setup3-header h2 {
  margin: 0;

  color: #FFFFFF;

  font-size: clamp(40px, 5vw, 64px);

  line-height: 1.05;

  font-weight: 900;

  letter-spacing: -3px;
}


.setup3-header h2 span {
  display: block;

  color: #00FF88;
}


/* =========================================
   HEADER DESCRIPTION
========================================= */

.setup3-header p {
  max-width: 620px;

  margin: 22px auto 0;

  color: #929D97;

  font-size: 17px;

  line-height: 1.7;
}


/* =========================================
   MAIN CARD
========================================= */

.setup3-card {
  display: grid;

  grid-template-columns: 0.8fr 1.2fr;

  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.025),
      transparent 50%
    ),
    #0D1210;

  border: 1px solid rgba(255,255,255,0.08);

  border-radius: 24px;

  box-shadow:
    0 25px 70px rgba(0,0,0,0.35);

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}


.setup3-card:hover {
  border-color: rgba(0,255,136,0.25);

  box-shadow:
    0 30px 80px rgba(0,0,0,0.4),
    0 0 40px rgba(0,255,136,0.05);
}


/* =========================================
   VISUAL
========================================= */

.setup3-visual {
  position: relative;

  min-height: 510px;

  display: flex;

  align-items: center;
  justify-content: center;

  overflow: hidden;

  background:
    radial-gradient(
      circle at center,
      rgba(0,255,136,0.10),
      transparent 55%
    ),
    #090D0B;

  border-right: 1px solid rgba(255,255,255,0.07);
}


/* =========================================
   NUMBER
========================================= */

.setup3-number {
  position: absolute;

  top: 25px;
  left: 28px;

  color: rgba(255,255,255,0.13);

  font-size: 12px;

  font-weight: 900;

  letter-spacing: 1.5px;
}


/* =========================================
   APP ICON
========================================= */

.setup3-app-icon {
  position: relative;
  z-index: 3;

  display: flex;

  align-items: center;
  justify-content: center;

  width: 145px;
  height: 145px;

  border-radius: 35px;

  background: rgba(0,255,136,0.07);

  border: 1px solid rgba(0,255,136,0.25);

  color: #00FF88;

  box-shadow:
    0 0 45px rgba(0,255,136,0.08);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}


.setup3-app-icon svg {
  width: 65px;
  height: 65px;
}


.setup3-card:hover .setup3-app-icon {
  transform: translateY(-7px);

  box-shadow:
    0 0 65px rgba(0,255,136,0.15);
}


/* =========================================
   RINGS
========================================= */

.setup3-ring {
  position: absolute;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  border-radius: 50%;

  border: 1px solid rgba(0,255,136,0.10);

  pointer-events: none;
}

.setup3-ring-one {
  width: 230px;
  height: 230px;
}

.setup3-ring-two {
  width: 330px;
  height: 330px;

  border-color: rgba(0,255,136,0.055);
}


/* =========================================
   VISUAL GLOW
========================================= */

.setup3-visual-glow {
  position: absolute;

  width: 240px;
  height: 240px;

  border-radius: 50%;

  background: rgba(0,255,136,0.08);

  filter: blur(70px);

  pointer-events: none;
}


/* =========================================
   CONTENT
========================================= */

.setup3-content {
  padding: 48px 45px;
}


/* =========================================
   LABEL
========================================= */

.setup3-label {
  display: block;

  margin-bottom: 13px;

  color: #00FF88;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 1.5px;
}


/* =========================================
   TITLE
========================================= */

.setup3-content h3 {
  max-width: 500px;

  margin: 0 0 15px;

  color: #FFFFFF;

  font-size: 34px;

  line-height: 1.15;

  font-weight: 900;

  letter-spacing: -1.5px;
}


/* =========================================
   DESCRIPTION
========================================= */

.setup3-description {
  max-width: 560px;

  margin: 0;

  color: #929D97;

  font-size: 14px;

  line-height: 1.75;
}


/* =========================================
   OPTIONS
========================================= */

.setup3-options {
  display: flex;

  flex-direction: column;

  gap: 14px;

  margin-top: 30px;
}


/* =========================================
   OPTION
========================================= */

.setup3-option {
  display: flex;

  align-items: center;

  gap: 13px;

  padding: 13px 15px;

  background: rgba(255,255,255,0.018);

  border: 1px solid rgba(255,255,255,0.06);

  border-radius: 13px;

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}


.setup3-option:hover {
  transform: translateX(4px);

  background: rgba(0,255,136,0.035);

  border-color: rgba(0,255,136,0.17);
}


/* =========================================
   OPTION ICON
========================================= */

.setup3-option-icon {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  flex-shrink: 0;

  border-radius: 11px;

  background: rgba(0,255,136,0.07);

  border: 1px solid rgba(0,255,136,0.14);

  color: #00FF88;

  font-size: 10px;

  font-weight: 900;
}


/* =========================================
   OPTION TEXT
========================================= */

.setup3-option-text strong {
  display: block;

  margin-bottom: 3px;

  color: #FFFFFF;

  font-size: 12px;

  font-weight: 800;
}


.setup3-option-text p {
  margin: 0;

  color: #7E8B83;

  font-size: 11px;

  line-height: 1.5;
}


/* =========================================
   TIP
========================================= */

.setup3-tip {
  display: flex;

  align-items: flex-start;

  gap: 12px;

  margin-top: 24px;

  padding: 15px 17px;

  background: rgba(0,255,136,0.035);

  border: 1px solid rgba(0,255,136,0.12);

  border-radius: 13px;
}


/* =========================================
   TIP ICON
========================================= */

.setup3-tip-icon {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 24px;
  height: 24px;

  flex-shrink: 0;

  border-radius: 50%;

  background: #00FF88;

  color: #031009;

  font-size: 11px;

  font-weight: 900;
}


/* =========================================
   TIP TEXT
========================================= */

.setup3-tip strong {
  display: block;

  margin-bottom: 3px;

  color: #FFFFFF;

  font-size: 12px;

  font-weight: 800;
}


.setup3-tip p {
  margin: 0;

  color: #7E8B83;

  font-size: 11px;

  line-height: 1.5;
}


/* =========================================
   PROGRESS
========================================= */

.setup3-progress-area {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 18px;

  margin-top: 30px;
}


.setup3-progress {
  display: flex;

  align-items: center;
}


/* =========================================
   DOT
========================================= */

.setup3-dot {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: rgba(255,255,255,0.15);

  border: 1px solid rgba(255,255,255,0.15);
}


.setup3-dot.active {
  background: #00FF88;

  border-color: #00FF88;

  box-shadow:
    0 0 12px rgba(0,255,136,0.5);
}


/* =========================================
   LINE
========================================= */

.setup3-line {
  width: 35px;
  height: 1px;

  background: rgba(255,255,255,0.12);
}


.setup3-line.active {
  background: rgba(0,255,136,0.35);
}


/* =========================================
   PROGRESS TEXT
========================================= */

.setup3-progress-text {
  color: #7E8B83;

  font-size: 11px;

  font-weight: 600;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

  .setup3-card {
    grid-template-columns: 1fr;
  }

  .setup3-visual {
    min-height: 360px;

    border-right: none;

    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  .setup3-content {
    padding: 40px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .setup3-section {
    padding: 80px 0;
  }

  .setup3-header {
    margin-bottom: 45px;
  }

  .setup3-header h2 {
    font-size: clamp(36px, 11vw, 48px);

    letter-spacing: -2px;
  }

  .setup3-header p {
    font-size: 15px;
  }

  .setup3-card {
    border-radius: 20px;
  }

  .setup3-visual {
    min-height: 290px;
  }

  .setup3-app-icon {
    width: 110px;
    height: 110px;

    border-radius: 28px;
  }

  .setup3-app-icon svg {
    width: 50px;
    height: 50px;
  }

  .setup3-ring-one {
    width: 190px;
    height: 190px;
  }

  .setup3-ring-two {
    width: 270px;
    height: 270px;
  }

  .setup3-content {
    padding: 30px 24px;
  }

  .setup3-content h3 {
    font-size: 28px;

    letter-spacing: -1px;
  }

  .setup3-description {
    font-size: 13px;
  }

  .setup3-option {
    padding: 12px;
  }

  .setup3-progress-area {
    margin-top: 24px;
  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 390px) {

  .setup3-section {
    padding: 70px 0;
  }

  .setup3-visual {
    min-height: 260px;
  }

  .setup3-content {
    padding: 25px 20px;
  }

  .setup3-content h3 {
    font-size: 25px;
  }

  .setup3-header h2 {
    font-size: 35px;
  }

  .setup3-progress-text {
    font-size: 10px;
  }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-bf163e5 *//* =========================================
   SETUP GUIDE - STEP 4
========================================= */

.setup-step-section {
  position: relative;
  overflow: hidden;

  padding: 120px 0;

  background: #050706;

  font-family: "Inter", sans-serif;

  color: #FFFFFF;
}


/* =========================================
   CONTAINER
========================================= */

.setup-step-container {
  position: relative;
  z-index: 2;

  width: 92%;
  max-width: 1000px;

  margin: 0 auto;
}


/* =========================================
   GLOW
========================================= */

.setup-step-glow {
  position: absolute;

  width: 430px;
  height: 430px;

  border-radius: 50%;

  background: rgba(0,255,136,0.08);

  filter: blur(145px);

  pointer-events: none;
}

.setup-step-glow-left {
  top: 10%;
  left: -250px;
}

.setup-step-glow-right {
  bottom: 5%;
  right: -250px;
}


/* =========================================
   HEADER
========================================= */

.setup-step-header {
  max-width: 720px;

  margin: 0 auto 65px;

  text-align: center;
}


.setup-step-badge {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 8px 15px;

  margin-bottom: 20px;

  background: rgba(0,255,136,0.06);

  border: 1px solid rgba(0,255,136,0.25);

  border-radius: 50px;

  color: #00FF88;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 1.4px;

  text-transform: uppercase;
}


/* =========================================
   HEADING
========================================= */

.setup-step-header h2 {
  margin: 0;

  color: #FFFFFF;

  font-size: clamp(40px, 5vw, 64px);

  line-height: 1.05;

  font-weight: 900;

  letter-spacing: -3px;
}


.setup-step-header h2 span {
  display: block;

  color: #00FF88;

  background: linear-gradient(
    90deg,
    #00FF88,
    #00C96B
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
}


.setup-step-header p {
  max-width: 620px;

  margin: 22px auto 0;

  color: #929D97;

  font-size: 16px;

  line-height: 1.7;
}


/* =========================================
   MAIN CARD
========================================= */

.setup-step-card {
  position: relative;

  display: flex;

  align-items: flex-start;

  gap: 35px;

  padding: 38px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 0% 0%,
      rgba(0,255,136,0.08),
      transparent 40%
    ),
    linear-gradient(
      145deg,
      rgba(255,255,255,0.025),
      transparent 55%
    ),
    #0D1210;

  border: 1px solid rgba(0,255,136,0.20);

  border-radius: 24px;

  box-shadow:
    0 25px 70px rgba(0,0,0,0.35),
    0 0 45px rgba(0,255,136,0.04);

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}


.setup-step-card:hover {
  transform: translateY(-5px);

  border-color: rgba(0,255,136,0.40);

  box-shadow:
    0 30px 75px rgba(0,0,0,0.42),
    0 0 50px rgba(0,255,136,0.08);
}


/* =========================================
   NUMBER
========================================= */

.setup-step-number {
  position: absolute;

  top: 20px;
  right: 25px;

  color: rgba(255,255,255,0.10);

  font-size: 12px;

  font-weight: 900;

  letter-spacing: 1.5px;
}


/* =========================================
   ICON
========================================= */

.setup-step-icon {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 72px;
  height: 72px;

  flex-shrink: 0;

  margin-top: 3px;

  background: rgba(0,255,136,0.07);

  border: 1px solid rgba(0,255,136,0.18);

  border-radius: 18px;

  color: #00FF88;

  transition: 0.25s ease;
}


.setup-step-icon svg {
  width: 34px;
  height: 34px;
}


.setup-step-card:hover .setup-step-icon {
  transform: translateY(-3px);

  background: rgba(0,255,136,0.11);

  border-color: rgba(0,255,136,0.35);

  box-shadow:
    0 0 30px rgba(0,255,136,0.10);
}


/* =========================================
   CONTENT
========================================= */

.setup-step-content {
  flex: 1;
}


.setup-step-label {
  display: block;

  margin-bottom: 9px;

  color: #00FF88;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1.4px;
}


.setup-step-content h3 {
  margin: 0 0 12px;

  color: #FFFFFF;

  font-size: 27px;

  font-weight: 800;

  letter-spacing: -0.8px;
}


.setup-step-content p {
  max-width: 650px;

  margin: 0;

  color: #929D97;

  font-size: 14px;

  line-height: 1.75;
}


/* =========================================
   FEATURES
========================================= */

.setup-step-features {
  display: flex;

  flex-wrap: wrap;

  gap: 18px;

  margin-top: 25px;
}


.setup-step-features div {
  display: flex;

  align-items: center;

  gap: 8px;

  color: #7E8B83;

  font-size: 11px;

  font-weight: 600;
}


.setup-step-features div span {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 19px;
  height: 19px;

  border-radius: 50%;

  background: rgba(0,255,136,0.07);

  color: #00FF88;

  font-size: 10px;

  font-weight: 900;
}


/* =========================================
   BOTTOM
========================================= */

.setup-step-bottom {
  display: flex;

  align-items: center;

  gap: 18px;

  margin-top: 22px;

  padding: 22px 25px;

  background: #0D1210;

  border: 1px solid rgba(255,255,255,0.08);

  border-radius: 17px;
}


/* =========================================
   STATUS
========================================= */

.setup-step-status {
  display: flex;

  align-items: center;

  gap: 8px;

  flex-shrink: 0;

  color: #00FF88;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1.2px;
}


.setup-step-status span {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #00FF88;

  box-shadow:
    0 0 13px rgba(0,255,136,0.65);
}


/* =========================================
   BOTTOM TEXT
========================================= */

.setup-step-bottom-text {
  padding-left: 18px;

  border-left: 1px solid rgba(255,255,255,0.08);
}


.setup-step-bottom-text strong {
  display: block;

  margin-bottom: 3px;

  color: #FFFFFF;

  font-size: 12px;

  font-weight: 800;
}


.setup-step-bottom-text p {
  margin: 0;

  color: #7E8B83;

  font-size: 11px;

  line-height: 1.5;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 768px) {

  .setup-step-section {
    padding: 90px 0;
  }

  .setup-step-card {
    gap: 25px;

    padding: 30px;
  }

  .setup-step-header h2 {
    font-size: clamp(40px, 9vw, 58px);
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .setup-step-section {
    padding: 80px 0;
  }

  .setup-step-container {
    width: 92%;
  }

  .setup-step-header {
    margin-bottom: 45px;
  }

  .setup-step-header h2 {
    font-size: clamp(36px, 11vw, 48px);

    letter-spacing: -2px;
  }

  .setup-step-header p {
    font-size: 14px;
  }

  .setup-step-card {
    flex-direction: column;

    gap: 22px;

    padding: 27px 24px;

    border-radius: 20px;
  }

  .setup-step-icon {
    width: 60px;
    height: 60px;

    border-radius: 15px;
  }

  .setup-step-icon svg {
    width: 28px;
    height: 28px;
  }

  .setup-step-content h3 {
    font-size: 24px;
  }

  .setup-step-content p {
    font-size: 13px;
  }

  .setup-step-features {
    flex-direction: column;

    gap: 11px;
  }

  .setup-step-bottom {
    flex-direction: column;

    align-items: flex-start;

    gap: 12px;

    padding: 20px;
  }

  .setup-step-bottom-text {
    padding-left: 0;

    padding-top: 12px;

    border-left: 0;

    border-top: 1px solid rgba(255,255,255,0.08);
  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 390px) {

  .setup-step-section {
    padding: 70px 0;
  }

  .setup-step-card {
    padding: 24px 20px;
  }

  .setup-step-header h2 {
    font-size: 35px;
  }

  .setup-step-content h3 {
    font-size: 22px;
  }

  .setup-step-content p {
    font-size: 12px;
  }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-67def47 *//* =========================================
   SETUP GUIDE - STEP 5
========================================= */

.setup5-section {
  position: relative;
  overflow: hidden;

  padding: 120px 0;

  background: #090D0B;

  font-family: "Inter", sans-serif;

  color: #FFFFFF;
}


/* =========================================
   CONTAINER
========================================= */

.setup5-container {
  position: relative;
  z-index: 2;

  width: 92%;
  max-width: 1100px;

  margin: 0 auto;
}


/* =========================================
   GLOW
========================================= */

.setup5-glow {
  position: absolute;

  border-radius: 50%;

  background: #00FF88;

  pointer-events: none;
}

.setup5-glow-1 {
  width: 450px;
  height: 450px;

  top: 5%;
  left: -250px;

  opacity: 0.07;

  filter: blur(150px);
}

.setup5-glow-2 {
  width: 400px;
  height: 400px;

  right: -220px;
  bottom: 0;

  opacity: 0.06;

  filter: blur(140px);
}


/* =========================================
   HEADER
========================================= */

.setup5-header {
  max-width: 720px;

  margin: 0 auto 65px;

  text-align: center;
}


.setup5-badge {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 8px 15px;

  margin-bottom: 20px;

  background: rgba(0,255,136,0.06);

  border: 1px solid rgba(0,255,136,0.25);

  border-radius: 50px;

  color: #00FF88;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 1.5px;

  text-transform: uppercase;
}


/* =========================================
   HEADING
========================================= */

.setup5-header h2 {
  margin: 0;

  color: #FFFFFF;

  font-size: clamp(42px, 5vw, 66px);

  line-height: 1;

  font-weight: 900;

  letter-spacing: -3.5px;
}


.setup5-header h2 span {
  display: inline;

  color: #00FF88;

  background: linear-gradient(
    90deg,
    #00FF88,
    #00C96B
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
}


.setup5-header p {
  max-width: 630px;

  margin: 22px auto 0;

  color: #929D97;

  font-size: 16px;

  line-height: 1.7;
}


/* =========================================
   MAIN CARD
========================================= */

.setup5-card {
  position: relative;

  display: grid;

  grid-template-columns: 1fr 1fr;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 0% 0%,
      rgba(0,255,136,0.08),
      transparent 38%
    ),
    #0D1210;

  border: 1px solid rgba(255,255,255,0.08);

  border-radius: 26px;

  box-shadow:
    0 30px 80px rgba(0,0,0,0.35);

  transition:
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}


.setup5-card:hover {
  transform: translateY(-5px);

  border-color: rgba(0,255,136,0.30);

  box-shadow:
    0 35px 90px rgba(0,0,0,0.42),
    0 0 45px rgba(0,255,136,0.06);
}


/* =========================================
   LEFT SIDE
========================================= */

.setup5-left {
  position: relative;

  padding: 45px;

  border-right: 1px solid rgba(255,255,255,0.07);
}


.setup5-number {
  position: absolute;

  top: 25px;
  right: 30px;

  color: rgba(255,255,255,0.10);

  font-size: 11px;

  font-weight: 900;

  letter-spacing: 1.5px;
}


/* =========================================
   ICON
========================================= */

.setup5-icon {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 68px;
  height: 68px;

  margin-bottom: 28px;

  border-radius: 18px;

  background: rgba(0,255,136,0.07);

  border: 1px solid rgba(0,255,136,0.18);

  color: #00FF88;

  transition: 0.25s ease;
}


.setup5-icon svg {
  width: 32px;
  height: 32px;
}


.setup5-card:hover .setup5-icon {
  transform: translateY(-3px);

  background: rgba(0,255,136,0.11);

  border-color: rgba(0,255,136,0.35);

  box-shadow:
    0 0 30px rgba(0,255,136,0.10);
}


/* =========================================
   LABEL
========================================= */

.setup5-label {
  display: block;

  margin-bottom: 10px;

  color: #00FF88;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1.4px;
}


/* =========================================
   TITLE
========================================= */

.setup5-left h3 {
  margin: 0 0 14px;

  color: #FFFFFF;

  font-size: 27px;

  font-weight: 800;

  letter-spacing: -0.8px;
}


/* =========================================
   DESCRIPTION
========================================= */

.setup5-left > p {
  max-width: 450px;

  margin: 0;

  color: #929D97;

  font-size: 14px;

  line-height: 1.75;
}


/* =========================================
   RIGHT SIDE
========================================= */

.setup5-right {
  display: flex;

  flex-direction: column;

  justify-content: center;

  gap: 14px;

  padding: 40px;
}


/* =========================================
   CHECK ITEM
========================================= */

.setup5-check-item {
  display: flex;

  align-items: flex-start;

  gap: 14px;

  padding: 18px;

  background: rgba(255,255,255,0.015);

  border: 1px solid rgba(255,255,255,0.06);

  border-radius: 15px;

  transition: 0.25s ease;
}


.setup5-check-item:hover {
  transform: translateX(4px);

  background: rgba(0,255,136,0.035);

  border-color: rgba(0,255,136,0.18);
}


/* =========================================
   CHECK ICON
========================================= */

.setup5-check {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 30px;
  height: 30px;

  flex-shrink: 0;

  border-radius: 9px;

  background: rgba(0,255,136,0.08);

  border: 1px solid rgba(0,255,136,0.16);

  color: #00FF88;

  font-size: 13px;

  font-weight: 900;
}


/* =========================================
   CHECK TEXT
========================================= */

.setup5-check-item strong {
  display: block;

  margin-bottom: 4px;

  color: #FFFFFF;

  font-size: 13px;

  font-weight: 800;
}


.setup5-check-item p {
  margin: 0;

  color: #7E8B83;

  font-size: 11px;

  line-height: 1.55;
}


/* =========================================
   SUCCESS BAR
========================================= */

.setup5-success {
  display: flex;

  align-items: center;

  gap: 14px;

  margin-top: 18px;

  padding: 20px 23px;

  background: #0D1210;

  border: 1px solid rgba(0,255,136,0.16);

  border-radius: 17px;
}


/* =========================================
   SUCCESS ICON
========================================= */

.setup5-success-icon {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;

  flex-shrink: 0;

  border-radius: 12px;

  background: rgba(0,255,136,0.08);

  border: 1px solid rgba(0,255,136,0.18);

  color: #00FF88;

  font-size: 17px;

  font-weight: 900;
}


/* =========================================
   SUCCESS TEXT
========================================= */

.setup5-success-text {
  display: flex;

  flex-direction: column;

  gap: 3px;

  flex: 1;
}


.setup5-success-text strong {
  color: #FFFFFF;

  font-size: 13px;

  font-weight: 800;
}


.setup5-success-text span {
  color: #7E8B83;

  font-size: 11px;
}


/* =========================================
   LIVE
========================================= */

.setup5-live {
  display: flex;

  align-items: center;

  gap: 8px;

  color: #00FF88;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1.2px;
}


.setup5-live span {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #00FF88;

  box-shadow:
    0 0 12px rgba(0,255,136,0.65);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 800px) {

  .setup5-card {
    grid-template-columns: 1fr;
  }

  .setup5-left {
    border-right: 0;

    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .setup5-section {
    padding: 80px 0;
  }

  .setup5-container {
    width: 92%;
  }

  .setup5-header {
    margin-bottom: 45px;
  }

  .setup5-header h2 {
    font-size: clamp(36px, 11vw, 48px);

    letter-spacing: -2.5px;
  }

  .setup5-header p {
    font-size: 14px;
  }

  .setup5-left {
    padding: 28px 24px;
  }

  .setup5-right {
    padding: 24px;
  }

  .setup5-icon {
    width: 60px;
    height: 60px;
  }

  .setup5-left h3 {
    font-size: 23px;
  }

  .setup5-left > p {
    font-size: 13px;
  }

  .setup5-success {
    align-items: flex-start;

    flex-wrap: wrap;

    padding: 18px;
  }

  .setup5-live {
    width: 100%;

    margin-left: 54px;
  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 390px) {

  .setup5-section {
    padding: 70px 0;
  }

  .setup5-left {
    padding: 24px 20px;
  }

  .setup5-right {
    padding: 20px;
  }

  .setup5-header h2 {
    font-size: 35px;
  }

  .setup5-left h3 {
    font-size: 21px;
  }

  .setup5-check-item {
    padding: 15px;
  }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-62e824f *//* =========================================
   SETUP GUIDE - STEP 6
========================================= */

.setup6-section {
  position: relative;
  overflow: hidden;

  padding: 120px 0;

  background: #050706;

  font-family: "Inter", sans-serif;

  color: #FFFFFF;
}


/* =========================================
   CONTAINER
========================================= */

.setup6-container {
  position: relative;
  z-index: 2;

  width: 92%;
  max-width: 1050px;

  margin: 0 auto;
}


/* =========================================
   GLOW
========================================= */

.setup6-glow {
  position: absolute;

  border-radius: 50%;

  background: #00FF88;

  pointer-events: none;
}

.setup6-glow-left {
  width: 450px;
  height: 450px;

  top: 5%;
  left: -280px;

  opacity: 0.07;

  filter: blur(150px);
}

.setup6-glow-right {
  width: 430px;
  height: 430px;

  right: -250px;
  bottom: 0;

  opacity: 0.06;

  filter: blur(145px);
}


/* =========================================
   HEADER
========================================= */

.setup6-header {
  max-width: 720px;

  margin: 0 auto 70px;

  text-align: center;
}


.setup6-badge {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 8px 15px;

  margin-bottom: 20px;

  background: rgba(0,255,136,0.06);

  border: 1px solid rgba(0,255,136,0.25);

  border-radius: 50px;

  color: #00FF88;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 1.5px;

  text-transform: uppercase;
}


/* =========================================
   TITLE
========================================= */

.setup6-header h2 {
  margin: 0;

  color: #FFFFFF;

  font-size: clamp(42px, 5vw, 66px);

  line-height: 1;

  font-weight: 900;

  letter-spacing: -3.5px;
}


.setup6-header h2 span {
  color: #00FF88;

  background: linear-gradient(
    90deg,
    #00FF88,
    #00C96B
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
}


.setup6-header p {
  max-width: 630px;

  margin: 22px auto 0;

  color: #929D97;

  font-size: 16px;

  line-height: 1.7;
}


/* =========================================
   TIMELINE
========================================= */

.setup6-timeline {
  position: relative;

  display: flex;

  flex-direction: column;

  gap: 18px;
}


/* =========================================
   TIMELINE LINE
========================================= */

.setup6-line {
  position: absolute;

  top: 35px;
  bottom: 35px;

  left: 31px;

  width: 1px;

  background: linear-gradient(
    to bottom,
    rgba(0,255,136,0.35),
    rgba(0,255,136,0.08)
  );
}


/* =========================================
   ITEM
========================================= */

.setup6-item {
  position: relative;

  display: grid;

  grid-template-columns: 64px 1fr;

  gap: 20px;

  align-items: center;
}


/* =========================================
   DOT
========================================= */

.setup6-dot {
  position: relative;
  z-index: 2;

  display: flex;

  align-items: center;
  justify-content: center;

  width: 64px;
  height: 64px;

  border-radius: 50%;

  background: #090D0B;

  border: 1px solid rgba(0,255,136,0.22);

  box-shadow:
    0 0 0 7px #050706;

  transition: 0.25s ease;
}


.setup6-dot span {
  color: #00FF88;

  font-size: 10px;

  font-weight: 900;

  letter-spacing: 0.5px;
}


/* =========================================
   BOX
========================================= */

.setup6-box {
  padding: 27px 30px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.025),
      transparent 55%
    ),
    #0D1210;

  border: 1px solid rgba(255,255,255,0.08);

  border-radius: 20px;

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}


.setup6-item:hover .setup6-box {
  transform: translateX(5px);

  border-color: rgba(0,255,136,0.28);

  box-shadow:
    0 20px 55px rgba(0,0,0,0.30),
    0 0 35px rgba(0,255,136,0.05);
}


.setup6-item:hover .setup6-dot {
  background: rgba(0,255,136,0.06);

  border-color: rgba(0,255,136,0.45);

  box-shadow:
    0 0 0 7px #050706,
    0 0 25px rgba(0,255,136,0.12);
}


/* =========================================
   FEATURED
========================================= */

.setup6-featured .setup6-box {
  border-color: rgba(0,255,136,0.28);

  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(0,255,136,0.09),
      transparent 40%
    ),
    #0D1210;
}


.setup6-featured .setup6-dot {
  background: rgba(0,255,136,0.08);

  border-color: rgba(0,255,136,0.45);

  box-shadow:
    0 0 0 7px #050706,
    0 0 28px rgba(0,255,136,0.10);
}


/* =========================================
   BOX TOP
========================================= */

.setup6-box-top {
  display: flex;

  align-items: center;
  justify-content: space-between;

  margin-bottom: 18px;
}


/* =========================================
   ICON
========================================= */

.setup6-icon {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 47px;
  height: 47px;

  border-radius: 13px;

  background: rgba(0,255,136,0.07);

  border: 1px solid rgba(0,255,136,0.13);

  color: #00FF88;
}


.setup6-icon svg {
  width: 23px;
  height: 23px;
}


/* =========================================
   STATUS
========================================= */

.setup6-status {
  padding: 6px 10px;

  border-radius: 50px;

  background: rgba(0,255,136,0.06);

  border: 1px solid rgba(0,255,136,0.14);

  color: #00FF88;

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1px;
}


/* =========================================
   TITLE
========================================= */

.setup6-box h3 {
  margin: 0 0 9px;

  color: #FFFFFF;

  font-size: 20px;

  font-weight: 800;

  letter-spacing: -0.5px;
}


/* =========================================
   DESCRIPTION
========================================= */

.setup6-box p {
  max-width: 650px;

  margin: 0;

  color: #929D97;

  font-size: 13px;

  line-height: 1.7;
}


/* =========================================
   BOTTOM
========================================= */

.setup6-bottom {
  display: flex;

  align-items: center;

  gap: 14px;

  margin-top: 25px;

  padding: 20px 23px;

  background: #0D1210;

  border: 1px solid rgba(0,255,136,0.15);

  border-radius: 17px;
}


/* =========================================
   BOTTOM ICON
========================================= */

.setup6-bottom-icon {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;

  flex-shrink: 0;

  border-radius: 12px;

  background: rgba(0,255,136,0.08);

  border: 1px solid rgba(0,255,136,0.18);

  color: #00FF88;

  font-size: 16px;

  font-weight: 900;
}


/* =========================================
   BOTTOM TEXT
========================================= */

.setup6-bottom-text {
  display: flex;

  flex-direction: column;

  gap: 3px;

  flex: 1;
}


.setup6-bottom-text strong {
  color: #FFFFFF;

  font-size: 13px;

  font-weight: 800;
}


.setup6-bottom-text span {
  color: #7E8B83;

  font-size: 11px;
}


/* =========================================
   ONLINE
========================================= */

.setup6-online {
  display: flex;

  align-items: center;

  gap: 8px;

  color: #00FF88;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1.2px;
}


.setup6-online span {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #00FF88;

  box-shadow:
    0 0 12px rgba(0,255,136,0.65);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 700px) {

  .setup6-header {
    margin-bottom: 50px;
  }

  .setup6-box {
    padding: 24px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .setup6-section {
    padding: 80px 0;
  }

  .setup6-container {
    width: 92%;
  }

  .setup6-header h2 {
    font-size: clamp(36px, 11vw, 48px);

    letter-spacing: -2.5px;
  }

  .setup6-header p {
    font-size: 14px;
  }

  .setup6-item {
    grid-template-columns: 48px 1fr;

    gap: 13px;
  }

  .setup6-line {
    left: 23px;
  }

  .setup6-dot {
    width: 48px;
    height: 48px;

    box-shadow:
      0 0 0 5px #050706;
  }

  .setup6-dot span {
    font-size: 8px;
  }

  .setup6-box {
    padding: 20px;

    border-radius: 17px;
  }

  .setup6-box-top {
    margin-bottom: 14px;
  }

  .setup6-icon {
    width: 42px;
    height: 42px;
  }

  .setup6-icon svg {
    width: 20px;
    height: 20px;
  }

  .setup6-box h3 {
    font-size: 18px;
  }

  .setup6-box p {
    font-size: 12px;
  }

  .setup6-bottom {
    align-items: flex-start;

    flex-wrap: wrap;

    padding: 18px;
  }

  .setup6-online {
    width: 100%;

    margin-left: 54px;
  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 390px) {

  .setup6-section {
    padding: 70px 0;
  }

  .setup6-header h2 {
    font-size: 35px;
  }

  .setup6-item {
    grid-template-columns: 42px 1fr;

    gap: 10px;
  }

  .setup6-line {
    left: 20px;
  }

  .setup6-dot {
    width: 42px;
    height: 42px;
  }

  .setup6-box {
    padding: 17px;
  }

  .setup6-box h3 {
    font-size: 17px;
  }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-74cb091 *//* =========================================
   SETUP GUIDE - STEP 07
========================================= */

.setup7-section {
  position: relative;
  overflow: hidden;

  padding: 120px 0;

  background: #050706;

  font-family: "Inter", sans-serif;

  color: #FFFFFF;
}


/* =========================================
   CONTAINER
========================================= */

.setup7-container {
  position: relative;
  z-index: 2;

  width: 92%;
  max-width: 1180px;

  margin: 0 auto;
}


/* =========================================
   BACKGROUND GLOW
========================================= */

.setup7-bg-glow {
  position: absolute;

  width: 550px;
  height: 550px;

  top: 25%;
  left: 50%;

  transform: translateX(-50%);

  border-radius: 50%;

  background: rgba(0,255,136,0.06);

  filter: blur(160px);

  pointer-events: none;
}


/* =========================================
   HEADER
========================================= */

.setup7-header {
  max-width: 760px;

  margin: 0 auto 65px;

  text-align: center;
}


.setup7-badge {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 8px 15px;

  margin-bottom: 20px;

  background: rgba(0,255,136,0.06);

  border: 1px solid rgba(0,255,136,0.25);

  border-radius: 50px;

  color: #00FF88;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 1.5px;

  text-transform: uppercase;
}


.setup7-header h2 {
  margin: 0;

  color: #FFFFFF;

  font-size: clamp(42px, 5vw, 66px);

  line-height: 1.05;

  font-weight: 900;

  letter-spacing: -3px;
}


.setup7-header h2 span {
  color: #00FF88;
}


.setup7-header p {
  max-width: 620px;

  margin: 22px auto 0;

  color: #929D97;

  font-size: 16px;

  line-height: 1.7;
}


/* =========================================
   MAIN CARD
========================================= */

.setup7-card {
  display: grid;

  grid-template-columns: 0.85fr 1.15fr;

  gap: 0;

  overflow: hidden;

  background: #0D1210;

  border: 1px solid rgba(255,255,255,0.08);

  border-radius: 26px;

  box-shadow:
    0 30px 80px rgba(0,0,0,0.35);
}


/* =========================================
   LEFT
========================================= */

.setup7-left {
  position: relative;

  display: flex;

  flex-direction: column;

  justify-content: center;

  min-height: 500px;

  padding: 55px;

  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(0,255,136,0.10),
      transparent 45%
    ),
    #090D0B;

  border-right: 1px solid rgba(255,255,255,0.07);
}


.setup7-number {
  position: absolute;

  top: 30px;
  right: 35px;

  color: rgba(255,255,255,0.08);

  font-size: 72px;

  line-height: 1;

  font-weight: 900;

  letter-spacing: -5px;
}


/* =========================================
   ICON
========================================= */

.setup7-icon-box {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 150px;
  height: 150px;

  margin-bottom: 38px;

  border-radius: 35px;

  background: rgba(0,255,136,0.04);

  border: 1px solid rgba(0,255,136,0.15);

  box-shadow:
    0 0 50px rgba(0,255,136,0.06);
}


.setup7-icon-circle {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 82px;
  height: 82px;

  padding-left: 5px;

  border-radius: 50%;

  background: linear-gradient(
    135deg,
    #00FF88,
    #00C96B
  );

  color: #031009;

  font-size: 25px;

  box-shadow:
    0 0 35px rgba(0,255,136,0.20);
}


/* =========================================
   LEFT TEXT
========================================= */

.setup7-small-title {
  display: block;

  margin-bottom: 10px;

  color: #00FF88;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1.5px;
}


.setup7-left-content h3 {
  margin: 0 0 14px;

  color: #FFFFFF;

  font-size: 35px;

  line-height: 1.1;

  font-weight: 900;

  letter-spacing: -1.5px;
}


.setup7-left-content h3 strong {
  color: #00FF88;
}


.setup7-left-content p {
  max-width: 380px;

  margin: 0;

  color: #929D97;

  font-size: 13px;

  line-height: 1.75;
}


/* =========================================
   RIGHT
========================================= */

.setup7-right {
  padding: 55px;
}


.setup7-status {
  display: flex;

  align-items: center;

  gap: 8px;

  margin-bottom: 15px;

  color: #00FF88;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1.4px;
}


.setup7-status span {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #00FF88;

  box-shadow:
    0 0 12px rgba(0,255,136,0.6);
}


/* =========================================
   RIGHT TITLE
========================================= */

.setup7-right-title {
  max-width: 520px;

  margin: 0;

  color: #FFFFFF;

  font-size: 40px;

  line-height: 1.1;

  font-weight: 900;

  letter-spacing: -1.8px;
}


.setup7-right-title span {
  color: #00FF88;
}


/* =========================================
   DESCRIPTION
========================================= */

.setup7-description {
  max-width: 520px;

  margin: 17px 0 30px;

  color: #929D97;

  font-size: 13px;

  line-height: 1.75;
}


/* =========================================
   CHECK LIST
========================================= */

.setup7-check-list {
  display: flex;

  flex-direction: column;

  gap: 11px;

  margin-bottom: 30px;
}


.setup7-check-item {
  display: flex;

  align-items: center;

  gap: 14px;

  padding: 14px 16px;

  background: rgba(255,255,255,0.015);

  border: 1px solid rgba(255,255,255,0.06);

  border-radius: 13px;

  transition: 0.25s ease;
}


.setup7-check-item:hover {
  transform: translateX(4px);

  background: rgba(0,255,136,0.025);

  border-color: rgba(0,255,136,0.18);
}


.setup7-check {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;

  flex-shrink: 0;

  border-radius: 10px;

  background: rgba(0,255,136,0.07);

  border: 1px solid rgba(0,255,136,0.16);

  color: #00FF88;

  font-size: 10px;

  font-weight: 900;
}


.setup7-check-text strong {
  display: block;

  margin-bottom: 3px;

  color: #FFFFFF;

  font-size: 12px;

  font-weight: 800;
}


.setup7-check-text p {
  margin: 0;

  color: #7E8B83;

  font-size: 10px;

  line-height: 1.5;
}


/* =========================================
   BUTTON
========================================= */

.setup7-button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 10px;

  padding: 14px 22px;

  border-radius: 12px;

  background: linear-gradient(
    90deg,
    #00FF88,
    #00D875
  );

  color: #031009;

  text-decoration: none;

  font-size: 12px;

  font-weight: 800;

  box-shadow:
    0 10px 30px rgba(0,255,136,0.12);

  transition: 0.25s ease;
}


.setup7-button span {
  font-size: 18px;

  transition: 0.25s ease;
}


.setup7-button:hover {
  transform: translateY(-3px);

  box-shadow:
    0 14px 38px rgba(0,255,136,0.22);
}


.setup7-button:hover span {
  transform: translateX(4px);
}


/* =========================================
   FEATURES
========================================= */

.setup7-features {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 15px;

  margin-top: 18px;
}


.setup7-feature {
  display: flex;

  align-items: center;

  gap: 12px;

  padding: 18px;

  background: #0D1210;

  border: 1px solid rgba(255,255,255,0.07);

  border-radius: 15px;
}


.setup7-feature-icon {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 32px;
  height: 32px;

  flex-shrink: 0;

  border-radius: 9px;

  background: rgba(0,255,136,0.07);

  border: 1px solid rgba(0,255,136,0.15);

  color: #00FF88;

  font-size: 12px;

  font-weight: 900;
}


.setup7-feature strong {
  display: block;

  margin-bottom: 3px;

  color: #FFFFFF;

  font-size: 11px;

  font-weight: 800;
}


.setup7-feature p {
  margin: 0;

  color: #7E8B83;

  font-size: 9px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

  .setup7-card {
    grid-template-columns: 1fr;
  }

  .setup7-left {
    min-height: auto;

    padding: 45px;

    border-right: none;

    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  .setup7-right {
    padding: 45px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .setup7-section {
    padding: 80px 0;
  }

  .setup7-header {
    margin-bottom: 45px;
  }

  .setup7-header h2 {
    font-size: clamp(36px, 11vw, 50px);

    letter-spacing: -2px;
  }

  .setup7-header p {
    font-size: 14px;
  }

  .setup7-left {
    padding: 35px 24px;
  }

  .setup7-right {
    padding: 30px 24px;
  }

  .setup7-number {
    top: 20px;
    right: 22px;

    font-size: 55px;
  }

  .setup7-icon-box {
    width: 120px;
    height: 120px;

    margin-bottom: 28px;
  }

  .setup7-icon-circle {
    width: 68px;
    height: 68px;

    font-size: 20px;
  }

  .setup7-left-content h3 {
    font-size: 30px;
  }

  .setup7-right-title {
    font-size: 30px;
  }

  .setup7-check-item {
    align-items: flex-start;

    padding: 13px;
  }

  .setup7-button {
    width: 100%;
  }

  .setup7-features {
    grid-template-columns: 1fr;

    gap: 10px;
  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 390px) {

  .setup7-section {
    padding: 70px 0;
  }

  .setup7-left {
    padding: 30px 20px;
  }

  .setup7-right {
    padding: 27px 20px;
  }

  .setup7-header h2 {
    font-size: 35px;
  }

  .setup7-left-content h3 {
    font-size: 27px;
  }

  .setup7-right-title {
    font-size: 27px;
  }

}/* End custom CSS */