/* Start custom CSS for html, class: .elementor-element-40b98a4 *//* =========================================
   RESELLER HERO
========================================= */

.reseller-hero {
  position: relative;
  overflow: hidden;

  min-height: 720px;

  display: flex;
  align-items: center;

  padding: 120px 0;

  background: #050706;

  font-family: "Inter", sans-serif;

  color: #FFFFFF;
}


/* =========================================
   CONTAINER
========================================= */

.reseller-hero-container {
  position: relative;
  z-index: 2;

  width: 92%;
  max-width: 1180px;

  margin: 0 auto;
}


/* =========================================
   CONTENT
========================================= */

.reseller-hero-content {
  max-width: 850px;

  margin: 0 auto;

  text-align: center;
}


/* =========================================
   GLOW
========================================= */

.reseller-hero-glow {
  position: absolute;

  width: 500px;
  height: 500px;

  border-radius: 50%;

  background: rgba(0,255,136,0.08);

  filter: blur(150px);

  pointer-events: none;
}


.reseller-hero-glow-left {
  top: 10%;
  left: -300px;
}


.reseller-hero-glow-right {
  right: -300px;
  bottom: 0;
}


/* =========================================
   BADGE
========================================= */

.reseller-hero-badge {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 9px;

  padding: 9px 16px;

  margin-bottom: 25px;

  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;
}


.reseller-hero-badge span {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #00FF88;

  box-shadow:
    0 0 12px rgba(0,255,136,0.7);
}


/* =========================================
   HEADING
========================================= */

.reseller-hero h1 {
  margin: 0;

  color: #FFFFFF;

  font-size: clamp(52px, 7vw, 86px);

  line-height: 0.98;

  font-weight: 900;

  letter-spacing: -5px;
}


/* =========================================
   GREEN TITLE
========================================= */

.reseller-hero h1 span {
  display: block;

  color: #00FF88 !important;

  background: none !important;

  -webkit-background-clip: initial !important;

  -webkit-text-fill-color: #00FF88 !important;

  background-clip: initial !important;
}


/* =========================================
   DESCRIPTION
========================================= */

.reseller-hero-content > p {
  max-width: 680px;

  margin: 28px auto 0;

  color: #929D97;

  font-size: 17px;

  line-height: 1.75;

  font-weight: 400;
}


/* =========================================
   BUTTONS
========================================= */

.reseller-hero-buttons {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 12px;

  margin-top: 38px;
}


/* =========================================
   BUTTON BASE
========================================= */

.reseller-primary-btn,
.reseller-secondary-btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 10px;

  min-height: 52px;

  padding: 0 23px;

  border-radius: 13px;

  text-decoration: none;

  font-size: 13px;

  font-weight: 800;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}


/* =========================================
   PRIMARY
========================================= */

.reseller-primary-btn {
  background: linear-gradient(
    90deg,
    #00FF88,
    #00D875
  );

  color: #031009;

  border: 1px solid transparent;

  box-shadow:
    0 10px 30px rgba(0,255,136,0.12);
}


.reseller-primary-btn span {
  font-size: 18px;

  transition: transform 0.25s ease;
}


.reseller-primary-btn:hover {
  transform: translateY(-3px);

  box-shadow:
    0 15px 40px rgba(0,255,136,0.22);
}


.reseller-primary-btn:hover span {
  transform: translateX(4px);
}


/* =========================================
   SECONDARY
========================================= */

.reseller-secondary-btn {
  color: #FFFFFF;

  background: rgba(255,255,255,0.025);

  border: 1px solid rgba(255,255,255,0.12);
}


.reseller-secondary-btn:hover {
  transform: translateY(-3px);

  color: #031009;

  background: #00FF88;

  border-color: #00FF88;
}


/* =========================================
   TRUST
========================================= */

.reseller-hero-trust {
  display: flex;

  align-items: center;
  justify-content: center;

  flex-wrap: wrap;

  gap: 28px;

  margin-top: 38px;
}


.reseller-trust-item {
  display: flex;

  align-items: center;

  gap: 8px;

  color: #7E8B83;

  font-size: 11px;

  font-weight: 600;
}


.reseller-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);

  border: 1px solid rgba(0,255,136,0.10);

  color: #00FF88;

  font-size: 10px;

  font-weight: 900;
}


/* =========================================
   HERO LIGHT
========================================= */

.reseller-hero::before {
  content: "";

  position: absolute;

  top: -180px;
  left: 50%;

  width: 500px;
  height: 300px;

  transform: translateX(-50%);

  background: rgba(0,255,136,0.045);

  filter: blur(100px);

  pointer-events: none;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 768px) {

  .reseller-hero {
    min-height: 650px;

    padding: 100px 0;
  }


  .reseller-hero h1 {
    font-size: clamp(48px, 10vw, 68px);

    letter-spacing: -4px;
  }


  .reseller-hero-content > p {
    font-size: 16px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .reseller-hero {
    min-height: auto;

    padding: 85px 0;
  }


  .reseller-hero-container {
    width: 92%;
  }


  .reseller-hero-badge {
    font-size: 9px;

    padding: 8px 13px;
  }


  .reseller-hero h1 {
    font-size: clamp(42px, 12vw, 54px);

    letter-spacing: -3px;
  }


  .reseller-hero-content > p {
    margin-top: 22px;

    font-size: 14px;

    line-height: 1.7;
  }


  .reseller-hero-buttons {
    flex-direction: column;

    width: 100%;

    margin-top: 30px;
  }


  .reseller-primary-btn,
  .reseller-secondary-btn {
    width: 100%;
  }


  .reseller-hero-trust {
    flex-direction: column;

    gap: 13px;

    margin-top: 30px;
  }


  .reseller-hero-glow {
    width: 350px;
    height: 350px;
  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 390px) {

  .reseller-hero {
    padding: 75px 0;
  }


  .reseller-hero h1 {
    font-size: 40px;

    letter-spacing: -2.5px;
  }


  .reseller-hero-content > p {
    font-size: 13px;
  }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-dc2eb35 *//* =========================================
   RESELLER BENEFITS
========================================= */

.reseller-benefits {
  position: relative;
  overflow: hidden;

  padding: 120px 0;

  background: #090D0B;

  font-family: "Inter", sans-serif;

  color: #FFFFFF;
}


/* =========================================
   CONTAINER
========================================= */

.reseller-benefits-container {
  position: relative;
  z-index: 2;

  width: 92%;
  max-width: 1180px;

  margin: 0 auto;
}


/* =========================================
   GLOW
========================================= */

.reseller-benefits-glow {
  position: absolute;

  width: 430px;
  height: 430px;

  border-radius: 50%;

  background: rgba(0,255,136,0.07);

  filter: blur(145px);

  pointer-events: none;
}


.reseller-benefits-glow-left {
  top: 10%;
  left: -250px;
}


.reseller-benefits-glow-right {
  right: -250px;
  bottom: 5%;
}


/* =========================================
   HEADER
========================================= */

.reseller-benefits-header {
  max-width: 720px;

  margin: 0 auto 65px;

  text-align: center;
}


/* =========================================
   BADGE
========================================= */

.reseller-benefits-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;
}


/* =========================================
   TITLE
========================================= */

.reseller-benefits-header h2 {
  margin: 0;

  color: #FFFFFF;

  font-size: clamp(40px, 5vw, 64px);

  line-height: 1.05;

  font-weight: 900;

  letter-spacing: -3px;
}


/* =========================================
   GREEN TITLE
========================================= */

.reseller-benefits-header h2 span {
  display: block;

  color: #00FF88 !important;

  background: none !important;

  -webkit-background-clip: initial !important;

  -webkit-text-fill-color: #00FF88 !important;

  background-clip: initial !important;
}


/* =========================================
   DESCRIPTION
========================================= */

.reseller-benefits-header p {
  max-width: 620px;

  margin: 22px auto 0;

  color: #929D97;

  font-size: 17px;

  line-height: 1.7;
}


/* =========================================
   GRID
========================================= */

.reseller-benefits-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 18px;
}


/* =========================================
   CARD
========================================= */

.reseller-benefit-card {
  position: relative;

  min-height: 280px;

  padding: 30px;

  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: 22px;

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}


.reseller-benefit-card:hover {
  transform: translateY(-5px);

  border-color: rgba(0,255,136,0.30);

  box-shadow:
    0 25px 60px rgba(0,0,0,0.35),
    0 0 35px rgba(0,255,136,0.06);
}


/* =========================================
   FEATURED CARD
========================================= */

.reseller-benefit-card.featured {
  border-color: rgba(0,255,136,0.25);

  background:
    radial-gradient(
      circle at 80% 0%,
      rgba(0,255,136,0.09),
      transparent 45%
    ),
    #0D1210;
}


.reseller-benefit-card.featured:hover {
  border-color: rgba(0,255,136,0.45);

  box-shadow:
    0 25px 65px rgba(0,0,0,0.40),
    0 0 45px rgba(0,255,136,0.09);
}


/* =========================================
   CARD TOP
========================================= */

.reseller-benefit-top {
  display: flex;

  align-items: flex-start;

  justify-content: space-between;

  margin-bottom: 30px;
}


.reseller-benefit-top > span {
  color: rgba(255,255,255,0.13);

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 1px;
}


/* =========================================
   ICON
========================================= */

.reseller-benefit-icon {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 55px;
  height: 55px;

  border-radius: 14px;

  background: rgba(0,255,136,0.07);

  border: 1px solid rgba(0,255,136,0.13);

  color: #00FF88;

  transition: 0.25s ease;
}


.reseller-benefit-icon svg {
  width: 26px;
  height: 26px;
}


.reseller-benefit-card:hover .reseller-benefit-icon {
  transform: translateY(-2px);

  background: rgba(0,255,136,0.10);

  border-color: rgba(0,255,136,0.30);

  box-shadow:
    0 0 25px rgba(0,255,136,0.07);
}


/* =========================================
   TITLE
========================================= */

.reseller-benefit-card h3 {
  margin: 0 0 12px;

  color: #FFFFFF;

  font-size: 21px;

  font-weight: 800;

  letter-spacing: -0.6px;
}


/* =========================================
   DESCRIPTION
========================================= */

.reseller-benefit-card p {
  max-width: 320px;

  margin: 0;

  color: #929D97;

  font-size: 13px;

  line-height: 1.7;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

  .reseller-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .reseller-benefits {
    padding: 80px 0;
  }


  .reseller-benefits-header {
    margin-bottom: 45px;
  }


  .reseller-benefits-header h2 {
    font-size: clamp(36px, 11vw, 48px);

    letter-spacing: -2px;
  }


  .reseller-benefits-header p {
    font-size: 15px;
  }


  .reseller-benefits-grid {
    grid-template-columns: 1fr;

    gap: 16px;
  }


  .reseller-benefit-card {
    min-height: 260px;

    padding: 27px 24px;
  }


  .reseller-benefit-card h3 {
    font-size: 20px;
  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 390px) {

  .reseller-benefits {
    padding: 70px 0;
  }


  .reseller-benefit-card {
    padding: 24px 20px;
  }


  .reseller-benefits-header h2 {
    font-size: 35px;
  }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b4b8957 *//* =========================================
   RESELLER BENEFITS SECTION
========================================= */

.reseller-benefits-section {
  position: relative;
  overflow: hidden;

  padding: 120px 0;

  background: #050706;

  font-family: "Inter", sans-serif;

  color: #FFFFFF;
}


/* =========================================
   CONTAINER
========================================= */

.reseller-container {
  position: relative;
  z-index: 2;

  width: 92%;
  max-width: 1180px;

  margin: 0 auto;
}


/* =========================================
   GLOW
========================================= */

.reseller-glow {
  position: absolute;

  width: 450px;
  height: 450px;

  border-radius: 50%;

  background: rgba(0,255,136,0.07);

  filter: blur(145px);

  pointer-events: none;
}

.reseller-glow-left {
  top: 8%;
  left: -250px;
}

.reseller-glow-right {
  bottom: 5%;
  right: -250px;
}


/* =========================================
   HEADER
========================================= */

.reseller-header {
  max-width: 720px;

  margin: 0 auto 65px;

  text-align: center;
}


/* =========================================
   BADGE
========================================= */

.reseller-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;
}


/* =========================================
   TITLE
========================================= */

.reseller-header h2 {
  margin: 0;

  color: #FFFFFF;

  font-size: clamp(40px, 5vw, 64px);

  line-height: 1.05;

  font-weight: 900;

  letter-spacing: -3px;
}


/* GREEN WORD */

.reseller-header h2 span {
  display: block;

  color: #00FF88;

  background: linear-gradient(
    90deg,
    #00FF88 0%,
    #00D875 55%,
    #00C96B 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
}


/* =========================================
   HEADER DESCRIPTION
========================================= */

.reseller-header p {
  max-width: 630px;

  margin: 22px auto 0;

  color: #929D97;

  font-size: 17px;

  line-height: 1.7;

  font-weight: 400;
}


/* =========================================
   BENEFITS GRID
========================================= */

.reseller-benefits-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 18px;

  align-items: stretch;
}


/* =========================================
   BENEFIT CARD
========================================= */

.reseller-benefit-card {
  position: relative;

  min-height: 310px;

  padding: 30px;

  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: 22px;

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}


.reseller-benefit-card:hover {
  transform: translateY(-6px);

  border-color: rgba(0,255,136,0.30);

  box-shadow:
    0 25px 60px rgba(0,0,0,0.35),
    0 0 35px rgba(0,255,136,0.06);
}


/* =========================================
   FEATURED CARD
========================================= */

.reseller-benefit-card.featured {
  border-color: rgba(0,255,136,0.25);

  background:
    radial-gradient(
      circle at 80% 0%,
      rgba(0,255,136,0.09),
      transparent 45%
    ),
    #0D1210;

  box-shadow:
    0 20px 55px rgba(0,0,0,0.25),
    0 0 30px rgba(0,255,136,0.04);
}


.reseller-benefit-card.featured:hover {
  border-color: rgba(0,255,136,0.45);

  box-shadow:
    0 30px 70px rgba(0,0,0,0.4),
    0 0 45px rgba(0,255,136,0.09);
}


/* =========================================
   CARD TOP
========================================= */

.reseller-card-top {
  display: flex;

  align-items: flex-start;
  justify-content: space-between;

  margin-bottom: 28px;
}


/* =========================================
   NUMBER
========================================= */

.reseller-number {
  color: rgba(255,255,255,0.13);

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 1px;
}


/* =========================================
   ICON
========================================= */

.reseller-icon {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 56px;
  height: 56px;

  border-radius: 15px;

  background: rgba(0,255,136,0.07);

  border: 1px solid rgba(0,255,136,0.13);

  color: #00FF88;

  transition: 0.25s ease;
}


.reseller-icon svg {
  width: 26px;
  height: 26px;
}


.reseller-benefit-card:hover .reseller-icon {
  transform: translateY(-3px);

  background: rgba(0,255,136,0.11);

  border-color: rgba(0,255,136,0.30);

  box-shadow:
    0 0 25px rgba(0,255,136,0.08);
}


/* =========================================
   CARD TITLE
========================================= */

.reseller-benefit-card h3 {
  margin: 0 0 12px;

  color: #FFFFFF;

  font-size: 21px;

  font-weight: 800;

  letter-spacing: -0.6px;
}


/* =========================================
   DESCRIPTION
========================================= */

.reseller-benefit-card p {
  min-height: 66px;

  margin: 0;

  color: #929D97;

  font-size: 13px;

  line-height: 1.7;
}


/* =========================================
   DIVIDER
========================================= */

.reseller-card-line {
  width: 100%;

  height: 1px;

  margin: 22px 0 15px;

  background: rgba(255,255,255,0.06);
}


/* =========================================
   HIGHLIGHT
========================================= */

.reseller-highlight {
  color: #00FF88;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 0.5px;
}


/* =========================================
   BOTTOM CTA
========================================= */

.reseller-bottom {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;

  margin-top: 50px;

  padding: 28px 30px;

  background:
    radial-gradient(
      circle at 0% 50%,
      rgba(0,255,136,0.07),
      transparent 40%
    ),
    #0D1210;

  border: 1px solid rgba(255,255,255,0.08);

  border-radius: 20px;
}


/* =========================================
   STATUS
========================================= */

.reseller-status {
  display: flex;

  align-items: center;

  gap: 8px;

  margin-bottom: 8px;

  color: #00FF88;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1.2px;
}


.reseller-status span {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #00FF88;

  box-shadow:
    0 0 12px rgba(0,255,136,0.6);
}


/* =========================================
   BOTTOM TITLE
========================================= */

.reseller-bottom-info h3 {
  margin: 0;

  color: #FFFFFF;

  font-size: 20px;

  font-weight: 700;

  letter-spacing: -0.5px;
}


.reseller-bottom-info h3 strong {
  color: #00FF88;

  font-weight: 800;
}


/* =========================================
   BUTTON
========================================= */

.reseller-button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 10px;

  flex-shrink: 0;

  min-height: 48px;

  padding: 0 21px;

  background: linear-gradient(
    90deg,
    #00FF88,
    #00D875
  );

  border-radius: 12px;

  color: #031009;

  text-decoration: none;

  font-size: 12px;

  font-weight: 800;

  transition: 0.25s ease;

  box-shadow:
    0 8px 25px rgba(0,255,136,0.10);
}


.reseller-button span {
  font-size: 17px;

  transition: 0.25s ease;
}


.reseller-button:hover {
  transform: translateY(-3px);

  box-shadow:
    0 12px 35px rgba(0,255,136,0.22);
}


.reseller-button:hover span {
  transform: translateX(4px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

  .reseller-benefits-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .reseller-benefits-section {
    padding: 80px 0;
  }

  .reseller-container {
    width: 92%;
  }

  .reseller-header {
    margin-bottom: 45px;
  }

  .reseller-header h2 {
    font-size: clamp(36px, 11vw, 48px);

    letter-spacing: -2px;
  }

  .reseller-header p {
    font-size: 15px;
  }

  .reseller-benefits-grid {
    grid-template-columns: 1fr;

    gap: 16px;
  }

  .reseller-benefit-card {
    min-height: 280px;

    padding: 27px 24px;
  }

  .reseller-benefit-card h3 {
    font-size: 20px;
  }

  .reseller-bottom {
    flex-direction: column;

    align-items: flex-start;

    padding: 24px;

    margin-top: 35px;
  }

  .reseller-bottom-info h3 {
    font-size: 18px;

    line-height: 1.5;
  }

  .reseller-button {
    width: 100%;
  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 390px) {

  .reseller-benefits-section {
    padding: 70px 0;
  }

  .reseller-benefit-card {
    padding: 24px 20px;
  }

  .reseller-header h2 {
    font-size: 35px;
  }

  .reseller-header p {
    font-size: 14px;
  }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-046501b *//* =========================================
   RESELLER SECTION 4
========================================= */

.reseller-section-4 {
  position: relative;
  overflow: hidden;

  padding: 120px 0;

  background: #050706;

  font-family: "Inter", sans-serif;

  color: #FFFFFF;
}


/* =========================================
   CONTAINER
========================================= */

.reseller-section-4 .reseller-container {
  position: relative;
  z-index: 2;

  width: 92%;
  max-width: 1180px;

  margin: 0 auto;
}


/* =========================================
   GLOW
========================================= */

.reseller-section-4 .reseller-glow {
  position: absolute;

  width: 450px;
  height: 450px;

  border-radius: 50%;

  background: rgba(0,255,136,0.07);

  filter: blur(145px);

  pointer-events: none;
}

.reseller-section-4 .reseller-glow-left {
  top: 5%;
  left: -260px;
}

.reseller-section-4 .reseller-glow-right {
  bottom: 0;
  right: -260px;
}


/* =========================================
   HEADER
========================================= */

.reseller-section-4 .reseller-header {
  max-width: 720px;

  margin: 0 auto 65px;

  text-align: center;
}


.reseller-section-4 .reseller-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;
}


.reseller-section-4 .reseller-header h2 {
  margin: 0;

  font-size: clamp(40px, 5vw, 64px);

  line-height: 1.05;

  font-weight: 900;

  letter-spacing: -3px;
}


.reseller-section-4 .reseller-header h2 span {
  display: block;

  color: #00FF88;

  background: linear-gradient(
    90deg,
    #FFFFFF 0%,
    #00FF88 55%,
    #00C96B 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
}


.reseller-section-4 .reseller-header p {
  max-width: 620px;

  margin: 22px auto 0;

  color: #929D97;

  font-size: 17px;

  line-height: 1.7;
}


/* =========================================
   BENEFITS GRID
========================================= */

.reseller-benefits-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 18px;
}


/* =========================================
   BENEFIT CARD
========================================= */

.reseller-benefit-card {
  position: relative;

  min-height: 270px;

  padding: 30px;

  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.025),
      transparent 55%
    ),
    #0D1210;

  border: 1px solid rgba(255,255,255,0.08);

  border-radius: 22px;

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}


.reseller-benefit-card:hover {
  transform: translateY(-6px);

  border-color: rgba(0,255,136,0.30);

  box-shadow:
    0 25px 60px rgba(0,0,0,0.35),
    0 0 35px rgba(0,255,136,0.06);
}


/* =========================================
   FEATURED CARD
========================================= */

.reseller-benefit-featured {
  border-color: rgba(0,255,136,0.28);

  background:
    radial-gradient(
      circle at 80% 0%,
      rgba(0,255,136,0.10),
      transparent 45%
    ),
    #0D1210;
}


.reseller-benefit-featured:hover {
  border-color: rgba(0,255,136,0.48);

  box-shadow:
    0 25px 65px rgba(0,0,0,0.4),
    0 0 45px rgba(0,255,136,0.09);
}


/* =========================================
   CARD TOP
========================================= */

.reseller-benefit-top {
  display: flex;

  align-items: flex-start;
  justify-content: space-between;

  margin-bottom: 28px;
}


.reseller-benefit-number {
  color: rgba(255,255,255,0.13);

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 1px;
}


/* =========================================
   ICON
========================================= */

.reseller-benefit-icon {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 55px;
  height: 55px;

  border-radius: 15px;

  background: rgba(0,255,136,0.07);

  border: 1px solid rgba(0,255,136,0.13);

  color: #00FF88;

  transition: 0.25s ease;
}


.reseller-benefit-icon svg {
  width: 26px;
  height: 26px;
}


.reseller-benefit-card:hover .reseller-benefit-icon {
  transform: translateY(-2px);

  background: rgba(0,255,136,0.11);

  border-color: rgba(0,255,136,0.32);

  box-shadow:
    0 0 25px rgba(0,255,136,0.08);
}


/* =========================================
   TITLE
========================================= */

.reseller-benefit-card h3 {
  margin: 0 0 12px;

  color: #FFFFFF;

  font-size: 21px;

  font-weight: 800;

  letter-spacing: -0.6px;
}


/* =========================================
   DESCRIPTION
========================================= */

.reseller-benefit-card p {
  max-width: 330px;

  margin: 0;

  color: #929D97;

  font-size: 13px;

  line-height: 1.7;
}


/* =========================================
   BOTTOM CTA
========================================= */

.reseller-section-4 .reseller-bottom {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;

  margin-top: 45px;

  padding: 27px 30px;

  background:
    radial-gradient(
      circle at 0% 50%,
      rgba(0,255,136,0.07),
      transparent 45%
    ),
    #0D1210;

  border: 1px solid rgba(255,255,255,0.08);

  border-radius: 20px;
}


/* =========================================
   STATUS
========================================= */

.reseller-status {
  display: flex;

  align-items: center;

  gap: 8px;

  margin-bottom: 8px;

  color: #00FF88;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1.2px;
}


.reseller-status span {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #00FF88;

  box-shadow:
    0 0 12px rgba(0,255,136,0.6);
}


/* =========================================
   BOTTOM TITLE
========================================= */

.reseller-bottom-info h3 {
  margin: 0;

  color: #FFFFFF;

  font-size: 20px;

  font-weight: 700;

  letter-spacing: -0.5px;
}


.reseller-bottom-info h3 strong {
  color: #00FF88;

  font-weight: 800;
}


/* =========================================
   BUTTON
========================================= */

.reseller-button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 10px;

  flex-shrink: 0;

  min-height: 48px;

  padding: 0 21px;

  border-radius: 12px;

  background: linear-gradient(
    90deg,
    #00FF88,
    #00D875
  );

  color: #031009;

  text-decoration: none;

  font-size: 12px;

  font-weight: 800;

  box-shadow:
    0 8px 25px rgba(0,255,136,0.10);

  transition: 0.25s ease;
}


.reseller-button span {
  font-size: 17px;

  transition: 0.25s ease;
}


.reseller-button:hover {
  transform: translateY(-3px);

  box-shadow:
    0 12px 35px rgba(0,255,136,0.22);
}


.reseller-button:hover span {
  transform: translateX(4px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

  .reseller-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .reseller-section-4 {
    padding: 80px 0;
  }

  .reseller-section-4 .reseller-header {
    margin-bottom: 45px;
  }

  .reseller-section-4 .reseller-header h2 {
    font-size: clamp(36px, 11vw, 48px);

    letter-spacing: -2px;
  }

  .reseller-section-4 .reseller-header p {
    font-size: 15px;
  }

  .reseller-benefits-grid {
    grid-template-columns: 1fr;

    gap: 16px;
  }

  .reseller-benefit-card {
    min-height: 250px;

    padding: 27px 24px;
  }

  .reseller-section-4 .reseller-bottom {
    flex-direction: column;

    align-items: flex-start;

    padding: 24px;
  }

  .reseller-button {
    width: 100%;
  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 390px) {

  .reseller-section-4 {
    padding: 70px 0;
  }

  .reseller-benefit-card {
    padding: 24px 20px;
  }

  .reseller-section-4 .reseller-header h2 {
    font-size: 35px;
  }

  .reseller-benefit-card p {
    font-size: 12px;
  }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-77a057d */@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');


/* =========================
   RESELLER PRICING
========================= */

.reseller-pricing {
  width: 100%;
  padding: 90px 20px 100px;
  background: #050706;
  font-family: 'Inter', sans-serif;
  color: #ffffff;
  box-sizing: border-box;
}

.reseller-pricing * {
  box-sizing: border-box;
}


/* =========================
   HEADER
========================= */

.pricing-header {
  max-width: 760px;
  margin: 0 auto 55px;
  text-align: center;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 8px 16px;

  border: 1px solid rgba(0, 255, 136, 0.35);
  border-radius: 50px;

  background: rgba(0, 255, 136, 0.04);

  color: #00ff88;

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;

  margin-bottom: 20px;
}

.pricing-header h2 {
  margin: 0;

  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.98;

  font-weight: 900;
  letter-spacing: -2.5px;

  color: #ffffff;
}

.pricing-header h2 span {
  display: block;
  color: #00ff88;
}

.pricing-header p {
  max-width: 620px;
  margin: 22px auto 0;

  color: #929d97;

  font-size: 14px;
  line-height: 1.7;
}


/* =========================
   GRID
========================= */

.pricing-grid {
  width: 100%;
  max-width: 1180px;

  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 18px;

  align-items: stretch;
}


/* =========================
   CARD
========================= */

.price-card {
  position: relative;

  min-height: 570px;

  padding: 32px 30px 28px;

  background:
    linear-gradient(
      180deg,
      #0e1512 0%,
      #090e0c 100%
    );

  border: 1px solid rgba(255, 255, 255, 0.09);

  border-radius: 24px;

  overflow: hidden;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.price-card:hover {
  transform: translateY(-7px);

  border-color: rgba(0, 255, 136, 0.35);

  box-shadow:
    0 20px 60px rgba(0, 255, 136, 0.08);
}


/* =========================
   TOP
========================= */

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 25px;
}

.plan-icon {
  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  border: 1px solid rgba(0, 255, 136, 0.25);

  background: rgba(0, 255, 136, 0.06);

  color: #00ff88;

  font-size: 18px;
  font-weight: 700;
}

.plan-number {
  color: #53615a;

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 1px;
}


/* =========================
   PLAN NAME
========================= */

.price-card h3 {
  margin: 0 0 10px;

  font-size: 23px;
  line-height: 1.2;

  font-weight: 800;

  color: #ffffff;
}

.plan-desc {
  min-height: 43px;

  margin: 0 0 20px;

  color: #84918a;

  font-size: 11px;
  line-height: 1.65;
}


/* =========================
   CREDITS
========================= */

.credits {
  width: 100%;

  padding: 11px 15px;

  margin-bottom: 20px;

  text-align: center;

  border-radius: 10px;

  background: rgba(0, 255, 136, 0.07);

  color: #00ff88;

  font-size: 12px;
  font-weight: 700;
}

.credits span {
  margin-right: 6px;
}


/* =========================
   PRICE
========================= */

.price {
  display: flex;
  align-items: flex-start;

  margin-bottom: 25px;

  color: #ffffff;
}

.price small {
  margin-top: 9px;
  margin-right: 3px;

  color: #00ff88;

  font-size: 17px;
  font-weight: 800;
}

.price strong {
  font-size: 54px;
  line-height: 0.95;

  font-weight: 900;

  letter-spacing: -2px;
}

.price sup {
  position: relative;
  top: 3px;

  color: #a8b3ad;

  font-size: 20px;
  font-weight: 800;
}


/* =========================
   BUTTON
========================= */

.plan-btn {
  width: 100%;

  min-height: 54px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  margin-bottom: 27px;

  border-radius: 12px;

  border: 1px solid rgba(255, 255, 255, 0.10);

  background: #111815;

  color: #ffffff;

  font-family: inherit;

  font-size: 12px;
  font-weight: 800;

  cursor: pointer;

  transition: all 0.25s ease;
}

.plan-btn span {
  color: #00ff88;
  font-size: 17px;
}

.plan-btn:hover {
  background: #00ff88;
  color: #041009;

  border-color: #00ff88;
}

.plan-btn:hover span {
  color: #041009;
}


/* =========================
   FEATURES
========================= */

.features {
  list-style: none;

  padding: 22px 0 0;
  margin: 0;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.features li {
  display: flex;
  align-items: flex-start;

  gap: 10px;

  margin-bottom: 15px;

  color: #a3aea8;

  font-size: 11px;
  line-height: 1.4;
}

.features li span {
  flex: 0 0 auto;

  width: 17px;
  height: 17px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-top: -1px;

  border-radius: 50%;

  background: rgba(0, 255, 136, 0.10);

  color: #00ff88;

  font-size: 10px;
  font-weight: 900;
}


/* =========================
   FEATURED CARD
========================= */

.price-card.featured {
  border-color: rgba(0, 255, 136, 0.55);

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(0, 255, 136, 0.12),
      transparent 40%
    ),
    linear-gradient(
      180deg,
      #10241b 0%,
      #08110d 100%
    );

  box-shadow:
    0 25px 70px rgba(0, 255, 136, 0.10);
}


/* =========================
   BEST SELLER
========================= */

.popular {
  position: absolute;

  top: 0;
  left: 50%;

  transform: translateX(-50%);

  padding: 7px 20px;

  background: #00ff88;

  color: #031109;

  border-radius: 0 0 10px 10px;

  font-size: 9px;
  font-weight: 900;

  letter-spacing: 1px;

  white-space: nowrap;
}

.featured .card-top {
  margin-top: 15px;
}

.featured .credits {
  background: rgba(0, 255, 136, 0.13);

  border: 1px solid rgba(0, 255, 136, 0.15);
}

.featured .plan-btn {
  background: #00ff88;

  border-color: #00ff88;

  color: #031109;

  box-shadow:
    0 10px 30px rgba(0, 255, 136, 0.16);
}

.featured .plan-btn span {
  color: #031109;
}

.featured .plan-btn:hover {
  background: #ffffff;
  border-color: #ffffff;
}

.featured .features li {
  color: #c4cec8;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {

  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .price-card {
    padding: 28px 20px 24px;
  }

  .price-card h3 {
    font-size: 20px;
  }

  .price strong {
    font-size: 45px;
  }

  .plan-desc {
    font-size: 10px;
  }

  .features li {
    font-size: 10px;
  }
}


@media (max-width: 760px) {

  .reseller-pricing {
    padding: 70px 16px;
  }

  .pricing-header {
    margin-bottom: 40px;
  }

  .pricing-header h2 {
    font-size: 42px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .price-card {
    min-height: auto;
  }

  .price strong {
    font-size: 55px;
  }
}


@media (max-width: 420px) {

  .pricing-header h2 {
    font-size: 36px;
  }

  .price-card {
    padding: 28px 22px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4d54a28 *//* =========================================
   FINAL CTA SECTION
========================================= */

.final-cta-section {
  position: relative;
  overflow: hidden;

  padding: 120px 0;

  background: #090D0B;

  font-family: "Inter", sans-serif;

  color: #FFFFFF;
}


/* =========================================
   CONTAINER
========================================= */

.final-cta-container {
  position: relative;
  z-index: 2;

  width: 92%;
  max-width: 1180px;

  margin: 0 auto;
}


/* =========================================
   GLOW
========================================= */

.final-cta-glow {
  position: absolute;

  border-radius: 50%;

  background: #00FF88;

  pointer-events: none;
}


.final-cta-glow-left {
  width: 420px;
  height: 420px;

  left: -250px;
  top: 10%;

  opacity: 0.07;

  filter: blur(150px);
}


.final-cta-glow-right {
  width: 420px;
  height: 420px;

  right: -250px;
  bottom: 5%;

  opacity: 0.07;

  filter: blur(150px);
}


/* =========================================
   CONTENT
========================================= */

.final-cta-content {
  position: relative;

  max-width: 900px;

  margin: 0 auto;

  padding: 75px 35px;

  text-align: center;

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(0,255,136,0.09),
      transparent 45%
    ),
    linear-gradient(
      145deg,
      rgba(255,255,255,0.025),
      transparent 60%
    ),
    #0D1210;

  border: 1px solid rgba(0,255,136,0.18);

  border-radius: 28px;

  box-shadow:
    0 30px 80px rgba(0,0,0,0.35),
    0 0 60px rgba(0,255,136,0.05);
}


/* =========================================
   BADGE
========================================= */

.final-cta-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
========================================= */

.final-cta-content h2 {
  margin: 0;

  font-size: clamp(42px, 6vw, 72px);

  line-height: 1;

  font-weight: 900;

  letter-spacing: -4px;

  color: #FFFFFF;
}


.final-cta-content h2 span {
  display: block;

  color: #00FF88;

  background: none;

  -webkit-background-clip: initial;
  -webkit-text-fill-color: #00FF88;

  background-clip: initial;
}


/* =========================================
   DESCRIPTION
========================================= */

.final-cta-content > p {
  max-width: 620px;

  margin: 24px auto 0;

  color: #929D97;

  font-size: 16px;

  line-height: 1.7;
}


/* =========================================
   BUTTONS
========================================= */

.final-cta-buttons {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 12px;

  margin-top: 35px;
}


.final-cta-primary,
.final-cta-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 BUTTON
========================================= */

.final-cta-primary {
  background: linear-gradient(
    90deg,
    #00FF88,
    #00D875
  );

  color: #031009;

  box-shadow:
    0 10px 30px rgba(0,255,136,0.12);
}


.final-cta-primary span {
  font-size: 18px;

  transition: 0.25s ease;
}


.final-cta-primary:hover {
  transform: translateY(-3px);

  box-shadow:
    0 14px 38px rgba(0,255,136,0.22);
}


.final-cta-primary:hover span {
  transform: translateX(4px);
}


/* =========================================
   SECONDARY BUTTON
========================================= */

.final-cta-secondary {
  color: #FFFFFF;

  background: rgba(255,255,255,0.02);

  border: 1px solid rgba(255,255,255,0.12);
}


.final-cta-secondary:hover {
  transform: translateY(-3px);

  color: #031009;

  background: #00FF88;

  border-color: #00FF88;
}


/* =========================================
   TRUST
========================================= */

.final-cta-trust {
  display: flex;

  align-items: center;
  justify-content: center;

  flex-wrap: wrap;

  gap: 28px;

  margin-top: 35px;
}


.final-cta-trust div {
  display: flex;

  align-items: center;

  gap: 8px;

  color: #7E8B83;

  font-size: 11px;

  font-weight: 600;
}


.final-cta-trust 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;
}


/* =========================================
   TOP DECORATIVE LINE
========================================= */

.final-cta-content::before {
  content: "";

  position: absolute;

  top: 30px;
  left: 50%;

  width: 180px;
  height: 1px;

  transform: translateX(-50%);

  background: linear-gradient(
    90deg,
    transparent,
    rgba(0,255,136,0.45),
    transparent
  );
}


/* =========================================
   BOTTOM DECORATIVE LINE
========================================= */

.final-cta-content::after {
  content: "";

  position: absolute;

  bottom: 30px;
  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) {

  .final-cta-section {
    padding: 90px 0;
  }

  .final-cta-content {
    padding: 70px 30px;
  }

  .final-cta-content h2 {
    font-size: clamp(40px, 9vw, 60px);

    letter-spacing: -3px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .final-cta-section {
    padding: 75px 0;
  }

  .final-cta-content {
    padding: 65px 20px;

    border-radius: 22px;
  }

  .final-cta-content h2 {
    font-size: clamp(36px, 11vw, 48px);

    letter-spacing: -2.5px;
  }

  .final-cta-content > p {
    font-size: 14px;
  }

  .final-cta-buttons {
    flex-direction: column;

    width: 100%;
  }

  .final-cta-primary,
  .final-cta-secondary {
    width: 100%;
  }

  .final-cta-trust {
    flex-direction: column;

    gap: 13px;
  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 390px) {

  .final-cta-section {
    padding: 65px 0;
  }

  .final-cta-content {
    padding: 55px 18px;
  }

  .final-cta-content h2 {
    font-size: 35px;
  }

  .final-cta-badge {
    font-size: 9px;
  }

}/* End custom CSS */