/*=========================================
  GOOGLE FONT
=========================================*/
@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@200;300;400;500;600;700;800;900&display=swap');

/*=========================================
  THEME VARIABLES
=========================================*/

:root {
  --primary: #089000;
  --primary-light: #0bc000;
  --primary-dark: #056600;

  --bg: #ffffff;
  --bg-secondary: #fafafa;

  --text: #111111;
  --text-light: #666666;

  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.25);

  --border: #ececec;
  --card: #ffffff;

  --shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

  --transition: 0.35s ease;
}

html[data-theme="dark"] {
  --primary: #089000;
  --primary-light: #0bc000;
  --primary-dark: #056600;

  --bg: #050505;
  --bg-secondary: #0f0f0f;

  --text: #ffffff;
  --text-light: #bdbdbd;

  --glass-bg: rgba(20, 20, 20, 0.75);
  --glass-border: rgba(255, 255, 255, 0.08);

  --border: rgba(255, 255, 255, 0.08);
  --card: #121212;

  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

html[data-theme="light"] {
  --primary: #089000;
  --primary-light: #0bc000;
  --primary-dark: #056600;

  --bg: #ffffff;
  --bg-secondary: #fafafa;

  --text: #111111;
  --text-light: #666666;

  --border: #ececec;
  --card: #ffffff;

  --shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/*=========================================
  RESET
=========================================*/

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Mulish', sans-serif;

  background: var(--bg);

  color: var(--text);

  overflow-x: hidden;

  transition: background-color 0.35s ease, color 0.35s ease;
}

.hero,
.hero-content,
.hero-card,
.badge,
.primary-btn,
.secondary-btn,
.features div {
  transition: background-color 0.35s ease, color 0.35s ease,
    border-color 0.35s ease, box-shadow 0.35s ease;
}

img {
  width: 100%;

  display: block;
}

button {
  cursor: pointer;

  font-family: inherit;
}

a {
  text-decoration: none;

  color: inherit;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

/*=========================================
  HERO SECTION
=========================================*/

.hero {
  position: relative;

  min-height: 100vh;

  display: flex;

  align-items: center;

  overflow: hidden;

  padding-top: 110px;
}

/*=========================================
  BACKGROUND
=========================================*/

.hero::before {
  content: "";

  position: absolute;

  top: -300px;

  right: -300px;

  width: 700px;

  height: 700px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(8, 144, 0, 0.22),
    transparent 70%
  );

  pointer-events: none;
}

.hero::after {
  content: "";

  position: absolute;

  bottom: -250px;

  left: -250px;

  width: 600px;

  height: 600px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(8, 144, 0, 0.1),
    transparent 70%
  );
}

html[data-theme="light"] .hero {
  background: radial-gradient(
      circle at top right,
      rgba(8, 144, 0, 0.1),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(8, 144, 0, 0.08),
      transparent 30%
    ),
    #ffffff;
}

html[data-theme="dark"] .hero {
  background: radial-gradient(
    circle at top right,
    rgba(8, 144, 0, 0.12),
    transparent 30%
  ),
  radial-gradient(
    circle at bottom left,
    rgba(8, 144, 0, 0.08),
    transparent 35%
  ),
  #050505;
}

/*=========================================
  HERO GRID
=========================================*/

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  width: 100%;
  position: relative;
  z-index: 2;
}

/*=========================================
  LEFT CONTENT
=========================================*/

.hero-content {
  max-width: 620px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: rgba(8, 144, 0, 0.08);
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

/*=========================================
  HEADING
=========================================*/

.hero-content h1 {
  font-size: 62px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 25px;
}

.hero-content h1 span {
  display: block;
  color: var(--primary);
}

/*=========================================
  PARAGRAPH
=========================================*/

.hero-content p {
  max-width: 560px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 40px;
}

/*=========================================
  BUTTONS
=========================================*/

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 45px;
}

.primary-btn,
.secondary-btn {
  height: 56px;
  padding: 0 34px;
  border-radius: 14px;

  font-size: 15px;
  font-weight: 600;

  transition: 0.35s;
}

/* Gold Button */

.primary-btn {
  border: none;

  background: linear-gradient(135deg, #73f386, #50d841, #25b518);

  box-shadow: 0 15px 35px rgba(65, 216, 70, 0.35);
}

html[data-theme="dark"] .primary-btn {
  color: #000000;
}

html[data-theme="light"] .primary-btn {
  color: #ffffff;
}

.primary-btn:hover {
  transform: translateY(-4px);
}

/* Outline Button */

.secondary-btn {
  background: transparent;

  color: var(--text);

  border: 1px solid var(--primary);
}

.secondary-btn:hover {
  border-color: var(--primary);

  color: var(--primary);
}

/*=========================================
  FEATURES
=========================================*/

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.features div {
  display: flex;
  align-items: center;
  gap: 10px;

  color: var(--text-light);

  font-size: 15px;

  font-weight: 500;
}

.features i {
  width: 34px;
  height: 34px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(75, 216, 65, 0.12);

  color: var(--primary);

  font-size: 17px;
}

/*=========================================
  RIGHT SIDE
=========================================*/

.hero-image {
  position: relative;

  display: flex;

  justify-content: center;

  align-items: center;

  min-height: 700px;
}

/*=========================================
  PHONE MOCKUP
=========================================*/

.phone {
  position: relative;

  width: 800px;

  max-width: 100%;

  z-index: 5;

  animation: floatPhone 6s ease-in-out infinite;

  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.35));
}

/*=========================================
  GOLD GLOW
=========================================*/

.hero-image::before {
  content: "";

  position: absolute;

  width: 700px;

  height: 700px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(8, 144, 0, 0.3),
    rgba(8, 144, 0, 0.12),
    transparent 72%
  );
  filter: blur(40px);

  z-index: 0;
}

.hero-image::after {
  content: "";

  position: absolute;

  width: 900px;

  height: 900px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(8, 144, 0, 0.1),
    transparent 70%
  );

  filter: blur(80px);

  z-index: -1;
}

/*=========================================
  FLOATING CARDS
=========================================*/

.hero-card {
  position: absolute;

  min-width: 180px;

  padding: 18px 22px;

  border-radius: 18px;

  background: rgba(255, 255, 255, 0.75);

  backdrop-filter: blur(18px);

  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.25);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);

  display: flex;

  justify-content: space-between;

  align-items: center;

  font-size: 15px;

  font-weight: 600;

  z-index: 5;

  transition: 0.35s;
}

.hero-card {
  background: var(--glass-bg);

  border: 1px solid var(--glass-border);
}

/*=========================================
  CARD COLORS
=========================================*/

.card span {
  font-weight: 700;
}

.card1 span {
  color: #14c86b;
}

.card2 span {
  color: #ff5b5b;
}

.card3 span {
  color: #14c86b;
}

/*=========================================
  CARD POSITION
=========================================*/

.card1 {
  top: 90px;

  left: -20px;

  animation: cardFloat 5s ease-in-out infinite;
}

.card2 {
  right: -20px;

  top: 260px;

  animation: cardFloat 6s ease-in-out infinite;
}

.card3 {
  left: 20px;

  bottom: 80px;

  animation: cardFloat 7s ease-in-out infinite;
}

/*=========================================
  ANIMATIONS
=========================================*/

@keyframes floatPhone {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }
}

@keyframes floatBull {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(12px);
  }
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/*=========================================
  HERO GLOW
=========================================*/

.hero-glow {
  position: absolute;

  width: 500px;

  height: 500px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(120, 216, 65, 0.35),
    transparent 70%
  );

  filter: blur(30px);

  z-index: 0;
}

/*=========================================
  BUTTON ICONS
=========================================*/

.primary-btn,
.secondary-btn {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 10px;
}

.primary-btn i,
.secondary-btn i {
  font-size: 18px;
}

/*=========================================
  BADGE ICON
=========================================*/

.badge i {
  color: var(--primary);

  font-size: 18px;
}

/*=========================================
  CARD CONTENT
=========================================*/

.card {
  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 18px;
}

.hero-card-left {
  display: flex;

  align-items: center;

  gap: 14px;
}

.hero-card-left i {
  width: 46px;

  height: 46px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: rgba(105, 216, 65, 0.12);

  color: var(--primary);

  font-size: 22px;
}

.card h4 {
  font-size: 15px;

  color: var(--text);

  margin-bottom: 4px;
}

.card small {
  color: var(--text-light);

  font-size: 12px;
}

.profit {
  color: #22c55e;

  font-weight: 700;
}

.loss {
  color: #ef4444;

  font-weight: 700;
}

/*=========================================
  FEATURE TEXT
=========================================*/

.features span {
  color: var(--text-light);
}

/*=========================================
  BUTTON HOVER
=========================================*/

.primary-btn:hover {
  transform: translateY(-4px) scale(1.03);
}

.secondary-btn:hover {
  background: rgba(70, 216, 65, 0.08);
}

/*=========================================
  RESPONSIVE
=========================================*/

@media (max-width: 1200px) {
  .hero-grid {
    gap: 50px;
  }

  .hero-content h1 {
    font-size: 52px;
  }

  .phone {
    width: 520px;
  }
}

/*=========================================
  TABLET
=========================================*/

@media (max-width: 991px) {
  .hero {
    padding-top: 120px;
  }

  .hero-grid {
    grid-template-columns: 1fr;

    text-align: center;

    gap: 70px;
  }

  .hero-content {
    max-width: 100%;

    margin: auto;
  }

  .hero-content p {
    max-width: 700px;

    margin: 0 auto 40px;
  }

  .hero-buttons,
  .features {
    justify-content: center;
  }

  .hero-image {
    min-height: 600px;
  }

  .phone {
    width: 460px;
  }

  .card1 {
    top: 40px;

    left: 20px;
  }

  .card2 {
    top: 200px;

    right: 20px;
  }

  .card3 {
    bottom: 40px;

    left: 40px;
  }
}

/*=========================================
  MOBILE
=========================================*/

@media (max-width: 768px) {
  .hero {
    padding-top: 110px;
  }

  .hero-content h1 {
    font-size: 42px;

    line-height: 1.2;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;

    width: 100%;

    gap: 15px;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;

    max-width: 320px;

    margin: auto;
  }

  .features {
    gap: 20px;
  }

  .hero-image {
    min-height: 450px;
  }

  .phone {
    width: 340px;
  }

  .card {
    transform: scale(0.85);
  }
}

/*=========================================
  SMALL MOBILE
=========================================*/

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .phone {
    width: 280px;
  }

  .hero-image {
    min-height: 360px;
  }

  .card {
    display: none;
  }

  .features {
    flex-direction: column;

    align-items: center;

    gap: 15px;
  }
}

/*=========================================
  EXTRA SMALL
=========================================*/

@media (max-width: 400px) {
  .hero-content h1 {
    font-size: 30px;
  }

  .phone {
    width: 240px;
  }
}

/*=========================================
WHY CHOOSE US
=========================================*/

.why-choose {
  padding: 100px 0;

  background: var(--bg);
}

.section-heading {
  text-align: center;

  max-width: 720px;

  margin: 0 auto 70px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 18px;

  border-radius: 30px;

  background-color: rgba(73, 216, 65, 0.08);

  border: 1px solid rgba(75, 216, 65, 0.18);

  color: var(--primary);

  font-size: 14px;
  font-weight: 600;
}

.section-badge i{
  font-size: 20px;
}

.section-heading h2 {
  margin: 22px 0 18px;

  font-size: 48px;

  line-height: 1.2;

  color: var(--heading);
}

.section-heading h2 span {
  color: var(--primary);
}

.section-heading p {
  color: var(--text-light);

  font-size: 17px;

  line-height: 1.8;
}

/*=========================================
GRID
=========================================*/

.why-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

/*=========================================
PREMIUM CARD
=========================================*/

/*=========================================
PREMIUM CARD
=========================================*/

/*=========================================
PREMIUM TRADING CARD
=========================================*/

.why-card {
  position: relative;

  overflow: hidden;

  padding: 28px 24px;

  border-radius: 18px;

  border: 1px solid var(--border);

  transition: 0.4s ease;

  isolation: isolate;
}

/*==============================
LIGHT
==============================*/

html[data-theme="light"] .why-card {
  background: radial-gradient(
      circle at top right,
      rgba(106, 245, 171, 0.18),
      transparent 45%
    ),
    linear-gradient(180deg, #ffffff 0%, #daffdd 100%);

  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/*==============================
DARK
==============================*/

html[data-theme="dark"] .why-card {
  background: radial-gradient(
      circle at top right,
      rgba(108, 216, 65, 0.16),
      transparent 45%
    ),
    linear-gradient(180deg, #151515 0%, #0d0d0d 100%);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 12px 30px rgba(0, 0, 0, 0.35);
}

.why-card:hover {
  transform: translateY(-10px);

  border-color: rgba(65, 216, 100, 0.35);
}

/* Light */

html[data-theme="light"] .why-card:hover {
  background: radial-gradient(
      circle at top right,
      rgba(106, 245, 118, 0.28),
      transparent 45%
    ),
    linear-gradient(180deg, #ffffff, #d1ffcd);

  box-shadow: 0 25px 50px rgba(120, 216, 65, 0.18);
}

/* Dark */

html[data-theme="dark"] .why-card:hover {
  background: radial-gradient(
      circle at top right,
      rgba(98, 216, 65, 0.22),
      transparent 45%
    ),
    linear-gradient(180deg, #191919, #0b140a);

  box-shadow: 0 30px 60px rgba(65, 216, 68, 0.15);
}

.why-card::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;

  width: 100%;
  height: 3px;

  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-light),
    var(--primary),
    var(--primary-dark),
    transparent
  );

  transform: scaleX(0);

  transition: 0.35s;
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card::after {
  content: "";

  position: absolute;

  width: 220px;
  height: 220px;

  top: -140px;
  right: -120px;

  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.12),
    transparent 70%
  );

  opacity: 0;

  transition: 0.5s;

  pointer-events: none;
}

.why-card:hover::after {
  opacity: 1;
}

/*=========================================
ICON
=========================================*/

.why-icon {
  width: 54px;
  height: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  margin-bottom: 18px;

  background: rgba(65, 216, 73, 0.1);

  border: 1px solid rgba(80, 216, 65, 0.18);

  color: var(--primary);

  font-size: 24px;

  transition: 0.35s;
}

.why-card:hover .why-icon {
  transform: rotate(-8deg) scale(1.08);

  background: var(--primary);

  color: #fff;
}

/*=========================================
TEXT
=========================================*/

.why-card h3 {
  font-size: 18px;

  margin-bottom: 10px;

  color: var(--heading);
}

.why-card p {
  font-size: 14px;

  line-height: 1.7;

  color: var(--text-light);
}

@media (max-width: 1200px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/*=========================================
MARKET ASSETS
=========================================*/

.markets {
  padding: 100px 0;

  position: relative;

  overflow: hidden;
}

/* Light Theme */

html[data-theme="light"] .markets {
  background: linear-gradient(180deg, #f8fffa, #ecffe9);
}

/* Dark Theme */

html[data-theme="dark"] .markets {
  background: linear-gradient(180deg, #0a140a, #080808);
}

/*=========================================
GRID
=========================================*/

.market-grid {
  display: grid;

  grid-template-columns: repeat(5, 1fr);

  gap: 22px;

  margin-top: 60px;
}

/*=========================================
CARD
=========================================*/

.market-item {
  position: relative;

  overflow: hidden;

  padding: 28px 20px;

  text-align: center;

  border-radius: 18px;

  text-decoration: none;

  border: 1px solid var(--border);

  transition: 0.35s;
}

/* Light */

html[data-theme="light"] .market-item {
  background: #fff;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

/* Dark */

html[data-theme="dark"] .market-item {
  background: #121212;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* Gold Glow */

.market-item::before {
  content: "";

  position: absolute;

  inset: 0;

  background: radial-gradient(
    circle at top right,
    rgba(65, 216, 110, 0.18),
    transparent 55%
  );

  opacity: 0;

  transition: 0.35s;
}

.market-item:hover {
  transform: translateY(-8px);

  border-color: var(--primary);

  box-shadow: 0 18px 45px rgba(65, 216, 115, 0.18);
}

.market-item:hover::before {
  opacity: 1;
}

/*=========================================
ICON
=========================================*/

.market-item i {
  width: 70px;
  height: 70px;

  margin: auto auto 20px;

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 18px;

  font-size: 34px;

  color: #fff;

  background: linear-gradient(
    135deg,
    var(--primary-light),
    var(--primary),
    var(--primary-dark)
  );

  transition: 0.35s;
}

.market-item:hover i {
  transform: scale(1.08) rotate(-6deg);
}

/*=========================================
TEXT
=========================================*/

.market-item h3 {
  margin-bottom: 8px;

  color: var(--heading);

  font-size: 22px;
}

.market-item span {
  color: var(--text-light);

  font-size: 14px;
}

/*=========================================
RESPONSIVE
=========================================*/

@media (max-width: 1100px) {
  .market-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .market-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .market-grid {
    grid-template-columns: 1fr;
  }
}

.mt5-showcase-section {
  width: 100%;
  padding: 85px 5%;

  background: var(--bg);

  overflow: hidden;

  position: relative;
}

/* Light */

html[data-theme="light"] .mt5-showcase-section {
  background: linear-gradient(180deg, #ffffff, #f2fff1);
}

/* Dark */

html[data-theme="dark"] .mt5-showcase-section {
  background: linear-gradient(180deg, #0d0d0d, #0a140a);
}

.mt5-showcase-container {
  max-width: 1250px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* LEFT */

.mt5-showcase-content {
  width: 100%;
}

/* TAG */

.mt5-showcase-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 18px;

  border-radius: 40px;

  background: rgba(85, 216, 65, 0.1);

  border: 1px solid rgba(65, 216, 75, 0.18);

  color: var(--primary);

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 0.8px;

  text-transform: uppercase;

  margin-bottom: 20px;
}

.mt5-showcase-tag i {
  font-size: 14px;
}

/* TITLE */

.mt5-showcase-content h2 {
  font-size: 52px;
  line-height: 1.08;
  font-weight: 800;

  color: var(--heading);

  margin-bottom: 18px;
}

.mt5-showcase-content h2 span {
  color: var(--primary);
}

.mt5-showcase-desc {
  max-width: 520px;

  font-size: 14px;
  line-height: 1.8;

  color: var(--text-light);

  margin-bottom: 34px;
}

/* FEATURES */

.mt5-showcase-features {
  display: flex;
  flex-direction: column;
  gap: 20px;

  margin-bottom: 38px;
}

.mt5-showcase-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

/* ICON */

.mt5-feature-icon-box {
  min-width: 48px;
  width: 48px;
  height: 48px;

  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: 14px;

  background: rgba(65, 216, 90, 0.1);

  border: 1px solid rgba(65, 216, 78, 0.15);

  color: var(--primary);

  font-size: 22px;

  transition: 0.35s;
}

.mt5-showcase-feature:hover .mt5-feature-icon-box {
  background: linear-gradient(
    135deg,
    var(--primary-light),
    var(--primary),
    var(--primary-dark)
  );

  color: #fff;

  transform: translateY(-3px);

  box-shadow: 0 15px 30px rgba(65, 216, 90, 0.25);
}

/* TEXT */

.mt5-feature-text h4 {
  font-size: 17px;
  font-weight: 700;

  color: var(--heading);

  margin-bottom: 6px;
}

.mt5-feature-text p {
  font-size: 13px;
  line-height: 1.7;

  color: #7a879f;
}

/* BUTTONS */

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

.mt5-download-btn{

    position:relative;

    display:flex;
    align-items:center;
    gap:12px;

    min-width:180px;

    padding:15px 20px;

    border-radius:14px;

    border:1px solid var(--border);

    text-decoration:none;

    overflow:hidden;

    transition:.35s;
}

/* Light */

html[data-theme="light"] .mt5-download-btn{

    background:#fff;

    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

/* Dark */

html[data-theme="dark"] .mt5-download-btn{

    background:#151515;
}

.mt5-download-btn::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background:linear-gradient(
    135deg,
    var(--primary-light),
    var(--primary),
    var(--primary-dark));

  opacity: 0;

  transition: 0.35s ease;

  z-index: 0;
}

.mt5-download-btn:hover {
  transform: translateY(-6px);

  border-color: transparent;

  box-shadow: 0 18px 35px rgba(10, 255, 26, 0.18);
}

.mt5-download-btn:hover::before {
  opacity: 1;
}

.mt5-download-btn i,
.mt5-download-btn div {
  position: relative;
  z-index: 2;
}

.mt5-download-btn i {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  background:rgba(65, 216, 73, 0.1);

  color: var(--primary);

  font-size: 21px;

  transition: 0.35s ease;
}

.mt5-download-btn:hover i{
    background:rgba(255,255,255,.15);

    color:#fff;
}

.mt5-download-btn span {
  display: block;

  font-size: 11px;
  font-weight: 500;

  margin-bottom: 2px;

  transition: 0.35s ease;
}

.mt5-download-btn strong {
  font-size: 16px;
  font-weight: 700;

  color: var(--heading);

  transition: 0.35s ease;
}

.mt5-download-btn:hover span,
.mt5-download-btn:hover strong {
  color: #ffffff;
}

/* IMAGE */

.mt5-showcase-image {
  width: 100%;

  display: flex;
  justify-content: center;
}

.mt5-showcase-image{

    position:relative;
}

.mt5-showcase-image::before{

    content:"";

    position:absolute;

    width:420px;
    height:420px;

    border-radius:50%;

    background:radial-gradient(
        circle,
        rgba(65, 216, 83, 0.18),
        transparent 70%);

    z-index:0;
}

.mt5-showcase-image img{

    position:relative;

    z-index:2;

    filter:drop-shadow(
        0 30px 50px rgba(65, 216, 73, 0.18));
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .mt5-showcase-container {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .mt5-showcase-content {
    text-align: center;
  }

  .mt5-showcase-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .mt5-showcase-feature {
    justify-content: center;
    text-align: left;
  }

  .mt5-download-buttons {
    justify-content: center;
  }

  .mt5-showcase-content h2 {
    font-size: 46px;
  }
}

@media (max-width: 768px) {
  .mt5-showcase-section {
    padding: 70px 5%;
  }

  .mt5-showcase-content h2 {
    font-size: 38px;
  }

  .mt5-showcase-desc {
    font-size: 13px;
    line-height: 1.8;
  }

  .mt5-showcase-feature {
    gap: 12px;
  }

  .mt5-feature-icon-box {
    min-width: 46px;
    width: 46px;
    height: 46px;

    font-size: 18px;

    border-radius: 14px;
  }

  .mt5-feature-text h4 {
    font-size: 15px;
  }

  .mt5-feature-text p {
    font-size: 12.5px;
  }

  .mt5-download-btn {
    width: 100%;
    justify-content: flex-start;
  }

  .mt5-download-btn strong {
    font-size: 15px;
  }
}

/* home-account-section */
.accounts-section{

  position:relative;

  padding:110px 0;

  overflow:hidden;
}

/*------------------------------
Light Theme
------------------------------*/

html[data-theme="light"] .accounts-section{

  background:
  linear-gradient(
  180deg,
  #ffffff 0%,
  #f6fcf6 100%);
}

/*------------------------------
Dark Theme
------------------------------*/

html[data-theme="dark"] .accounts-section{

  background:
  linear-gradient(
  180deg,
  #090909 0%,
  #121212 100%);
}

/* Gold Glow */

.accounts-section::before{

  content:"";

  position:absolute;

  left:-220px;
  top:-180px;

  width:520px;
  height:520px;

  border-radius:50%;

  background:
  radial-gradient(circle,
  rgba(8,144,0,.12),
  transparent 70%);

  pointer-events:none;
}

.accounts-section::after{

  content:"";

  position:absolute;

  right:-220px;
  bottom:-180px;

  width:520px;
  height:520px;

  border-radius:50%;

  background:
  radial-gradient(circle,
  rgba(8,144,0,.08),
  transparent 70%);

  pointer-events:none;
}

/*=========================================
          HEADING
=========================================*/

.accounts-heading{

  position:relative;

  z-index:2;

  text-align:center;

  max-width:760px;

  margin:0 auto 70px;
}

/* Badge */

/*=========================================
SECTION BADGE
=========================================*/

.section-badge{

  display:inline-flex;

  align-items:center;

  gap:10px;

  padding:10px 22px;

  margin-bottom:22px;

  border-radius:50px;

  background:rgba(8,144,0,.08);

  border:1px solid rgba(65, 216, 68, 0.2);

  color:var(--primary);

  font-size:13px;

  font-weight:700;

  letter-spacing:1px;

  text-transform:uppercase;

  transition:all .35s ease;
}

.accounts-heading h2{

  font-size:54px;

  font-weight:800;

  line-height:1.15;

  color:var(--heading);

  margin-bottom:22px;
}

.accounts-heading h2 span{

  background:linear-gradient(
  135deg,

  var(--primary-light),

  var(--primary),

  var(--primary-dark));

  -webkit-background-clip:text;

  -webkit-text-fill-color:transparent;
}

.accounts-heading p{

  max-width:650px;

  margin:auto;

  font-size:17px;

  line-height:1.9;

  color:var(--text-light);
}

/*=========================================
          LAYOUT
=========================================*/

.accounts-wrapper{

  position:relative;

  z-index:2;

  display:flex;

  justify-content:center;
}

.accounts-grid{

  width:100%;

  max-width:1280px;

  display:grid;

  grid-template-columns:repeat(3,1fr);

  gap:32px;
}

/*=========================================
          CARD BASE
=========================================*/

.account-card{

  position:relative;

  overflow:hidden;

  display:flex;

  flex-direction:column;

  justify-content:space-between;

  padding:34px 30px;

  border-radius:24px;

  transition:

  transform .45s ease,

  box-shadow .45s ease,

  border-color .45s ease,

  background .45s ease;

}

/*------------------------------
Light Card
------------------------------*/

html[data-theme="light"] .account-card{

  background:

  linear-gradient(
  180deg,

  #ffffff,

  #f8fcf7);

  border:1px solid rgba(8,144,0,.12);

  box-shadow:

  0 18px 45px rgba(15,23,42,.05);
}

/*------------------------------
Dark Card
------------------------------*/

html[data-theme="dark"] .account-card{

  background:

  linear-gradient(
  180deg,

  #171717,

  #101010);

  border:1px solid rgba(255,255,255,.06);

  box-shadow:

  0 20px 45px rgba(0,0,0,.35);
}

/*=========================================
Premium Gradient Border
=========================================*/

.account-card::before{

  content:"";

  position:absolute;

  inset:0;

  padding:1px;

  border-radius:24px;

  background:

  linear-gradient(
  145deg,

  rgba(106, 245, 115, 0.75),

  rgba(65, 216, 75, 0.18),

  transparent,

  rgba(22, 169, 37, 0.45));

  -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);

  -webkit-mask-composite:xor;

  mask-composite:exclude;

  opacity:.35;

  transition:.45s;
}

/*=========================================
Gold Ambient Glow
=========================================*/

.account-card::after{

  content:"";

  position:absolute;

  width:280px;
  height:280px;

  right:-140px;
  top:-140px;

  border-radius:50%;

  background:

  radial-gradient(circle,

  rgba(80, 216, 65, 0.16),

  transparent 72%);

  opacity:0;

  transition:.45s;

  z-index:0;
}

/*=========================================
Hover
=========================================*/

.account-card:hover{

  transform:translateY(-12px);

  border-color:rgba(65, 216, 98, 0.3);

  box-shadow:

  0 25px 60px rgba(65, 216, 68, 0.15),

  0 10px 30px rgba(0,0,0,.15);
}

.account-card:hover::before{

  opacity:1;
}

.account-card:hover::after{

  opacity:1;
}

/* Keep Content Above Glow */

.account-card>*{

  position:relative;

  z-index:2;
}

/*=========================================
        RECOMMENDED BADGE
=========================================*/

.ac-badge{

  position:absolute;

  top:12px;

  right:18px;

  left:auto;

  transform:none;

  padding:8px 18px;

  border-radius:50px;

  background:linear-gradient(
      135deg,
      var(--primary-light),
      var(--primary),
      var(--primary-dark)
  );

  color:#fff;

  font-size:12px;

  font-weight:700;

  box-shadow:0 12px 25px rgba(80, 216, 65, 0.3);
}

.ac-badge i{
  font-size:14px;
}

/*=========================================
      CARD TITLE
=========================================*/

.account-card h3{

  font-size:32px;

  font-weight:800;

  margin-bottom:12px;

  color:var(--heading);

  letter-spacing:.5px;
}

/* Premium underline */

.account-card h3::after{

  content:"";

  display:block;

  width:55px;

  height:3px;

  margin-top:12px;

  border-radius:20px;

  background:linear-gradient(
      90deg,
      var(--primary-light),
      var(--primary));
}

/*=========================================
      DESCRIPTION
=========================================*/

.card-desc{

  margin:20px 0 28px;

  color:var(--text-light);

  font-size:14px;

  line-height:1.9;
}

/*=========================================
      DIVIDER
=========================================*/

.account-card hr{

  border:none;

  height:1px;

  margin:30px 0;

  background:linear-gradient(
      90deg,
      transparent,
      rgba(8,144,0,.35),
      transparent);
}

/*=========================================
      FEATURES PANEL
=========================================*/

.card-features{

  display:flex;

  flex-direction:column;

  gap:14px;

  padding:22px;

  border-radius:18px;
}

/* Light */

html[data-theme="light"] .card-features{

  background:#faf8f4;

  border:1px solid rgba(65, 216, 85, 0.1);
}

/* Dark */

html[data-theme="dark"] .card-features{

  background:#1a1a1a;

  border:1px solid rgba(255, 255, 255, 0.05);
}

.card-features p{

  display:flex;

  justify-content:space-between;

  align-items:center;

  margin:0;

  padding-bottom:12px;

  border-bottom:1px dashed rgba(8,144,0,.12);

  font-size:14px;

  color:var(--text-light);
}

.card-features p:last-child{

  border-bottom:none;

  padding-bottom:0;
}

.card-features span{

  color:var(--heading);

  font-weight:700;
}

/*=========================================
      BUTTON
=========================================*/

.account-card a{

  width:100%;

  text-decoration:none;

  margin-top:30px;
}

.account-card button{

  position:relative;

  width:100%;

  height:56px;

  border:none;

  border-radius:14px;

  cursor:pointer;

  overflow:hidden;

  font-size:15px;

  font-weight:700;

  letter-spacing:.3px;

  transition:.35s;

  color:#fff;

  background:linear-gradient(
      135deg,
      var(--primary-light),
      var(--primary),
      var(--primary-dark));

  box-shadow:
      0 12px 30px rgba(8,144,0,.22);
}

.account-card button::before{

  content:"";

  position:absolute;

  inset:0;

  background:linear-gradient(
      135deg,
      rgba(255,255,255,.22),
      transparent);

  opacity:0;

  transition:.35s;
}

.account-card button:hover{

  transform:translateY(-4px);

  box-shadow:
      0 20px 45px rgba(8,144,0,.35);
}

.account-card button:hover::before{

  opacity:1;
}

.account-card button:active{

  transform:scale(.97);
}

/*=========================================
      POPULAR CARD
=========================================*/

.card-popular{

  transform:scale(1.03);

  border-color:rgba(8,144,0,.35) !important;
}

.card-popular:hover{

  transform:translateY(-12px) scale(1.04);
}

/*=========================================
      ICON BEFORE TITLE (OPTIONAL)
=========================================*/

.account-card h3::before{

  content:"✦";

  color:var(--primary);

  margin-right:10px;

  font-size:18px;
}

/*=========================================
        PREMIUM HOVER EFFECTS
=========================================*/

.account-card{

  cursor:pointer;

  transform-style:preserve-3d;

  will-change:transform;
}

.account-card:hover h3{

  color:var(--primary);

  transition:.35s ease;
}

.account-card:hover .card-features{

  border-color:rgba(65, 216, 68, 0.18);

  transition:.35s ease;
}

.account-card:hover .card-features span{

  color:var(--primary);
}

.account-card:hover hr{

  background:linear-gradient(
      90deg,
      transparent,
      var(--primary),
      transparent);
}

/*=========================================
      SOFT CARD GLOW
=========================================*/

html[data-theme="light"] .account-card:hover{

  background:
  linear-gradient(
      180deg,
      #ffffff,
      #fffaf3);

  box-shadow:
      0 30px 70px rgba(65, 216, 68, 0.15),
      0 12px 25px rgba(15,23,42,.08);
}

html[data-theme="dark"] .account-card:hover{

  background:
  linear-gradient(
      180deg,
      #1a1a1a,
      #111111);

  box-shadow:
      0 30px 70px rgba(110, 216, 65, 0.18),
      0 12px 30px rgba(0,0,0,.45);
}

/*=========================================
      BUTTON ANIMATION
=========================================*/

.account-card button{

  overflow:hidden;
}

.account-card button::after{

  content:"";

  position:absolute;

  top:0;
  left:-120%;

  width:70%;
  height:100%;

  transform:skewX(-25deg);

  background:
  linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.45),
      transparent);

  transition:.7s;
}

.account-card button:hover::after{

  left:140%;
}

/*=========================================
      FEATURE ANIMATION
=========================================*/

.card-features p{

  transition:.3s ease;
}

.card-features p:hover{

  transform:translateX(6px);
}

.card-features p:hover span{

  color:var(--primary);
}

/*=========================================
      BADGE ANIMATION
=========================================*/

.badge{

  animation:badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat{

  0%,100%{

      transform:
      translateX(-50%)
      translateY(0);
  }

  50%{

      transform:
      translateX(-50%)
      translateY(-4px);
  }
}

/*=========================================
      CARD ENTRANCE
=========================================*/

.account-card{

  animation:cardFade .8s ease both;
}

.account-card:nth-child(2){

  animation-delay:.15s;
}

.account-card:nth-child(3){

  animation-delay:.3s;
}

@keyframes cardFade{

  from{

      opacity:0;

      transform:
      translateY(40px);
  }

  to{

      opacity:1;

      transform:
      translateY(0);
  }
}

/*=========================================
      RESPONSIVE
=========================================*/

@media(max-width:1200px){

  .accounts-grid{

      gap:24px;
  }

  .account-card{

      padding:28px 24px;
  }

  .account-card h3{

      font-size:28px;
  }
}

@media(max-width:992px){

  .accounts-section{

      padding:90px 0;
  }

  .accounts-grid{

      grid-template-columns:repeat(2,1fr);

      gap:26px;
  }

  .card-popular{

      transform:none;
  }

  .card-popular:hover{

      transform:translateY(-10px);
  }

  .accounts-heading h2{

      font-size:46px;
  }
}

@media(max-width:768px){

  .accounts-section{

      padding:80px 20px;
  }

  .accounts-heading{

      margin-bottom:50px;
  }

  .accounts-heading h2{

      font-size:38px;
  }

  .accounts-heading p{

      font-size:15px;
  }

  .accounts-grid{

      grid-template-columns:1fr;

      gap:24px;
  }

  .account-card{

      padding:24px;
  }

  .account-card h3{

      font-size:26px;
  }

  .badge{

      font-size:11px;

      padding:8px 18px;
  }

  .card-features{

      padding:18px;
  }

  .card-features p{

      font-size:13px;
  }

  .account-card button{

      height:52px;

      font-size:14px;
  }
}

@media(max-width:480px){

  .accounts-heading h2{

      font-size:32px;
  }

  .accounts-heading::before{

      font-size:11px;

      padding:8px 16px;
  }

  .account-card{

      border-radius:18px;
  }

  .card-features{

      padding:16px;
  }

  .card-features p{

      flex-direction:column;

      align-items:flex-start;

      gap:4px;
  }

  .account-card button{

      width:100%;
  }
}

/* ================= PAYMENT SECTION ================= */

.payment-slider-section{
  position:relative;

  width:100%;
  overflow:hidden;

  padding:75px 0;

  background:
  radial-gradient(circle at top left, rgba(0,132,255,0.05), transparent 24%),
  radial-gradient(circle at bottom right, rgba(0,89,255,0.06), transparent 28%),
  linear-gradient(180deg,#f9fbff 0%, #eef4ff 100%);
}

/*=========================================
PAYMENT SECTION
=========================================*/

html[data-theme="light"] .payment-slider-section{

  background:
  linear-gradient(
  180deg,
  #ffffff 0%,
  #f2fdf3 100%);
}

html[data-theme="dark"] .payment-slider-section{

  background:
  linear-gradient(
  180deg,
  #090909 0%,
  #0b140c 100%);
}


/* GRID OVERLAY */
.payment-slider-section::before{
  content:"";

  position:absolute;
  inset:0;

  background-image:
  linear-gradient(rgba(0,0,0,0.018) 1px, transparent 1px),
  linear-gradient(90deg, rgba(0,0,0,0.018) 1px, transparent 1px);

  background-size:65px 65px;

  opacity:0.35;
}

/* SMALL GLOW */
.payment-slider-section::after{
  content:"";

  position:absolute;

  width:260px;
  height:260px;

  background:rgba(92, 255, 63, 0.08);

  border-radius:50%;

  filter:blur(100px);

  top:-90px;
  right:-70px;
}

/* ================= HEADING ================= */

.payment-heading{
  position:relative;
  z-index:5;

  max-width:620px;
  margin:auto;

  text-align:center;

  padding:0 20px;

  margin-bottom:45px;
}

.payment-tag{

  display:inline-flex;
  align-items:center;
  gap:8px;

  padding:8px 18px;

  border-radius:40px;

  font-size:12px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;

  color:var(--primary);

  background:rgba(8,144,0,.08);

  border:1px solid rgba(65, 216, 78, 0.18);
}

html[data-theme="dark"] .payment-tag{

  background:rgba(75, 216, 65, 0.1);

  border-color:rgba(8,144,0,.25);
}

/* TITLE */
.payment-heading h2{
  font-size:45px;
  line-height:1.12;
  font-weight:800;

  letter-spacing:-1px;

  color:var(--heading);

  margin-bottom:14px;
}

.payment-heading h2 span{

  color:var(--primary);
}


/* DESCRIPTION */
.payment-heading p{
  max-width:600px;
  margin:auto;

  font-size:17px;
  line-height:1.8;

  color:var(--text-light);
}

/* ================= SLIDER ================= */

.payment-slider{
  position:relative;

  padding-top: 10px;

  width:100%;
  overflow:hidden;
}

html[data-theme="light"] .payment-slider::before{

  background:linear-gradient(
  to right,
  #ffffff,
  transparent);
}

html[data-theme="light"] .payment-slider::after{

  background:linear-gradient(
  to left,
  #ffffff,
  transparent);
}

html[data-theme="dark"] .payment-slider::before{

  background:linear-gradient(
  to right,
  #090909,
  transparent);
}

html[data-theme="dark"] .payment-slider::after{

  background:linear-gradient(
  to left,
  #090909,
  transparent);
}

/* TRACK */
.payment-track{
  position:relative;
  z-index:2;

  display:flex;
  align-items:center;

  gap:26px;

  width:max-content;

  animation:paymentScroll 18s linear infinite;
}

.payment-item{

  width:200px;
  min-width:200px;
  height:95px;

  padding:22px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:18px;

  border:1px solid var(--border);

  backdrop-filter:blur(14px);

  transition:.35s;
}

.payment-item:hover{

  transform:translateY(-6px);

  border-color:rgba(65, 216, 100, 0.4);

  background:linear-gradient(
      135deg,
      rgba(8,144,0,.08),
      transparent
  );

  box-shadow:
      0 18px 40px rgba(65, 216, 80, 0.15);
}

/* Light */

html[data-theme="light"] .payment-item{

  background:rgba(255,255,255,.92);

  box-shadow:
  0 10px 30px rgba(15,23,42,.05);
}

/* Dark */

html[data-theme="dark"] .payment-item{

  background:rgba(20,20,20,.95);

  box-shadow:
  0 10px 30px rgba(0,0,0,.30);
}

.payment-item::before{

  content:"";

  position:absolute;

  top:0;
  left:0;

  width:100%;
  height:2px;

  background:linear-gradient(
      90deg,
      transparent,
      var(--primary-light),
      var(--primary),
      transparent);
}

.payment-item::after{

  content:"";

  position:absolute;

  width:140px;
  height:140px;

  border-radius:50%;

  background:rgba(68, 216, 65, 0.14);

  filter:blur(55px);

  opacity:0;

  transition:.35s;
}

.payment-item:hover{

  transform:translateY(-8px);

  border-color:rgba(0, 144, 43, 0.35);

  box-shadow:
  0 20px 40px rgba(65, 216, 85, 0.15);
}

.payment-item:hover::after{

  opacity:1;
}

/* LOGO */
.payment-item img{
  position:relative;
  z-index:2;

  max-width:120px;
  max-height:42px;

  width:auto;
  height:auto;

  object-fit:contain;

  object-fit:contain;

  opacity:0.9;

  transition:0.35s ease;
}

.payment-item:hover img{
  transform:scale(1.05);
  opacity:1;
}

/* ANIMATION */
@keyframes paymentScroll{

  from{
    transform:translateX(0);
  }

  to{
    transform:translateX(-50%);
  }

}

/* ================= MOBILE ================= */

@media(max-width:768px){

  .payment-slider-section{
    padding:60px 0;
  }

  .payment-heading{
    margin-bottom:35px;
  }

  .payment-heading h2{
    font-size:28px;
    line-height:1.15;
  }

  .payment-heading p{
    font-size:12px;
    line-height:1.7;
  }

  .payment-track{
    gap:14px;
  }

  .payment-item{
    width:145px;
    min-width:145px;
    height:72px;

    border-radius:14px;

    padding:14px;
  }

  .payment-item img{
    max-width:78px;
    max-height:32px;
  }

  .payment-slider::before,
  .payment-slider::after{
    width:55px;
  }

}

.steps-section{

  position:relative;

  padding:110px 0;

  overflow:hidden;
}

/* Light */

html[data-theme="light"] .steps-section{

  background:
  linear-gradient(
  180deg,
  #ffffff 0%,
  #f4fff2 100%);
}

/* Dark */

html[data-theme="dark"] .steps-section{

  background:
  linear-gradient(
  180deg,
  #090909,
  #0b140a);
}

/* Gold Glow */

.steps-section::before{

  content:"";

  position:absolute;

  top:-220px;
  left:50%;

  transform:translateX(-50%);

  width:750px;
  height:750px;

  border-radius:50%;

  background:
  radial-gradient(circle,
  rgba(8,144,0,.08),
  transparent 72%);

  pointer-events:none;
}

/*=========================================
HEADING
=========================================*/

.steps-heading{

  text-align:center;

  max-width:760px;

  margin:0 auto 80px;
}

.steps-heading h2{

  margin:22px 0 18px;

  font-size:54px;

  line-height:1.15;

  color:var(--heading);
}

.steps-heading h2 span{

  color:var(--primary);
}

.steps-heading p{

  max-width:620px;

  margin:auto;

  color:var(--text-light);

  line-height:1.8;

  font-size:16px;
}

/*=========================================
GRID
=========================================*/

.steps-grid{

  position:relative;

  display:grid;

  grid-template-columns:repeat(4,1fr);

  gap:28px;

  padding: 0px 80px 0px 80px;
}

/*=========================================
STEP CARD
=========================================*/

.step-card{

  position:relative;

  overflow:visible;

  padding:38px 30px;

  border-radius:24px;

  border:1px solid var(--border);

  transition:
      transform .35s ease,
      border-color .35s ease,
      box-shadow .35s ease,
      background .35s ease;
}

/* Light Theme */

html[data-theme="light"] .step-card{

  background:
  linear-gradient(
  180deg,
  #ffffff,
  #fffcf7);

  box-shadow:
  0 15px 40px rgba(15,23,42,.05);
}

/* Dark Theme */

html[data-theme="dark"] .step-card{

  background:
  linear-gradient(
  180deg,
  #151515,
  #111111);

  box-shadow:
  0 15px 35px rgba(0,0,0,.35);
}

/* Hover */

.step-card:hover{

  transform:translateY(-12px);

  border-color:rgba(8,144,0,.35);

  box-shadow:
  0 25px 55px rgba(65, 216, 88, 0.16);
}

/* Gold top border */

.step-card::before{

  content:"";

  position:absolute;

  top:0;
  left:0;

  width:100%;
  height:4px;

  border-radius:30px;

  background:
  linear-gradient(
  90deg,
  transparent,
  var(--primary-light),
  var(--primary),
  transparent);

  transform:scaleX(0);

  transition:.35s;
}

.step-card:hover::before{

  transform:scaleX(1);
}

/*=========================================
CONNECTOR LINE
=========================================*/

.step-card:not(:last-child)::after{

  content:"";

  position:absolute;

  right:-42px;
  top:50%;

  width:55px;
  height:2px;

  background:
  linear-gradient(
  to right,
  var(--primary),
  transparent);

  opacity:.45;
}

/*=========================================
STEP NUMBER
=========================================*/

.step-number{

  position:absolute;

  top:-18px;
  right:22px;

  width:52px;
  height:52px;

  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:20px;
  font-weight:800;

  color:var(--primary);

  border:2px solid rgba(8,144,0,.25);

  backdrop-filter:blur(20px);

  z-index:5;
}

html[data-theme="light"] .step-number{

  background:#daffd7;
}

html[data-theme="dark"] .step-number{

  background:#080808;
}

/*=========================================
ICON
=========================================*/

.step-icon{

  width:78px;
  height:78px;

  display:flex;
  align-items:center;
  justify-content:center;

  margin-bottom:28px;

  border-radius:22px;

  background:
  linear-gradient(
  135deg,
  rgba(106, 245, 118, 0.15),
  rgba(8,144,0,.08));

  border:1px solid rgba(65, 216, 93, 0.18);

  color:var(--primary);

  font-size:34px;

  transition:.35s ease;
}

.step-card:hover .step-icon{

  transform:
      rotate(-8deg)
      scale(1.08);

  background:
  linear-gradient(
  135deg,
  var(--primary-light),
  var(--primary));

  color:#ffffff;

  box-shadow:
  0 18px 35px rgba(65, 216, 123, 0.28);
}

/*=========================================
TEXT
=========================================*/

.step-card h3{

  margin-bottom:16px;

  font-size:24px;

  color:var(--heading);
}

.step-card p{

  color:var(--text-light);

  line-height:1.8;

  font-size:15px;
}

/*=========================================
BUTTON
=========================================*/

.steps-btn{

  margin-top:70px;

  display:flex;

  justify-content:center;
}

.steps-pr-btn{

  display:inline-flex;

  align-items:center;

  gap:12px;

  padding:17px 34px;

  border-radius:15px;

  text-decoration:none;

  font-weight:700;

  transition:.35s;
}

html[data-theme="light"] .steps-pr-btn{

  color:#ffffff;

  background:
  linear-gradient(
  135deg,
  var(--primary-light),
  var(--primary),
  var(--primary-dark));

  box-shadow:
  0 18px 35px rgba(65, 216, 65, 0.2);
}

html[data-theme="dark"] .steps-pr-btn{

  color:#000000;

  background:
  linear-gradient(
  135deg,
  var(--primary-light),
  var(--primary),
  var(--primary-dark));

  box-shadow:
  0 20px 40px rgba(8,144,0,.25);
}

.steps-pr-btn:hover{

  transform:translateY(-6px);

  box-shadow:
  0 25px 50px rgba(8,144,0,.35);
}

.steps-pr-btn i{

  font-size:20px;

  transition:.35s;
}

.steps-pr-btn:hover i{

  transform:translateX(6px);
}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1200px){

  .steps-grid{

      grid-template-columns:repeat(2,1fr);
  }

  .step-card::after{

      display:none;
  }

}

@media(max-width:768px){

  .steps-section{

      padding:80px 0;
  }

  .steps-heading{

      margin-bottom:55px;
  }

  .steps-heading h2{

      font-size:38px;
  }

  .steps-grid{

      grid-template-columns:1fr;

      gap:24px;
  }

  .step-card{

      padding:30px 24px;
  }

  .step-number{

      width:46px;
      height:46px;

      font-size:18px;
  }

  .step-icon{

      width:66px;
      height:66px;

      font-size:28px;
  }

  .step-card h3{

      font-size:21px;
  }

  .step-card p{

      font-size:14px;
  }

  .steps-btn{

      margin-top:50px;
  }
}

.faq-section{
  width:100%;
  padding:75px 4%;

  display:grid;
  grid-template-columns:340px 1fr;
  gap:42px;
}

/*=========================================
FAQ SECTION
=========================================*/

html[data-theme="light"] .faq-section{

  background:
  linear-gradient(
  180deg,
  #ffffff,
  #f5fdf4);
}

html[data-theme="dark"] .faq-section{

  background:
  linear-gradient(
  180deg,
  #090909,
  #0b140c);
}

/* LEFT */
.faq-left{
  position:sticky;
  top:110px;
  height:max-content;
}

.faq-tag{
  display:inline-flex;
  align-items:center;

  padding:7px 14px;
  border-radius:50px;

  font-size:10px;
  font-weight:700;
  letter-spacing:1px;

  background:rgba(8,144,0,.08);

  border:1px solid rgba(216,164,65,.18);

  color:var(--primary);

  margin-bottom:18px;
}

.faq-left h2{
  font-size:45px;
  line-height:1.2;
  font-weight:800;
  color:var(--heading);

  margin-bottom:18px;
}

.faq-left h2 span{

  color:var(--primary);
}

.faq-left p{
  max-width:300px;

  font-size:16px;
  line-height:1.8;
  color:var(--text-light);
}

/* RIGHT */
.faq-right{
  display:flex;
  flex-direction:column;
  gap:14px;
}

/* ITEM */
.faq-item{
  border-radius:18px;

  padding:0 20px;

  transition:0.35s ease;

  overflow:hidden;

  border:1px solid var(--border);

}

html[data-theme="light"] .faq-item {
  background-color: rgba(8, 144, 0, 0.18);

  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.05);
}

html[data-theme="dark"] .faq-item{

  background-color: #141414;

  box-shadow:
  0 10px 28px rgba(0,0,0,.30);
}

.faq-item.active{

  padding-top:18px;
  padding-bottom:18px;
}

html[data-theme="light"] .faq-item.active {
  background-color: #089000;

  box-shadow:
    0 18px 40px rgba(8, 144, 0, 0.30);
}

html[data-theme="dark"] .faq-item.active {
  background-color: #089000;

  box-shadow:
    0 18px 40px rgba(8, 144, 0, 0.30);
}

/* QUESTION */
.faq-question{
  width:100%;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;

  background:none;
  border:none;
  outline:none;

  padding:18px 0;

  cursor:pointer;

  color:var(--heading);

  transition:0.3s ease;
}

.faq-question span{
  text-align:left;

  font-size:18px;
  line-height:1.5;
  font-weight:700;

  transition:0.3s ease;
}

/* ICON */
.faq-icon{
  min-width:38px;
  width:38px;
  height:38px;

  display:flex;
  align-items:center;
  justify-content:center;

  background: var(--primary-dark);
  border-radius:50%;

  transition:0.3s ease;
}

.faq-icon i{
  font-size:26px;
  color:var(--primary-light);

  transition:0.3s ease;
}

/* ANSWER */
.faq-answer{
  max-height:0;
  overflow:hidden;

  transition:max-height 0.45s ease;
}

.faq-answer p{
  max-width:760px;

  font-size:15px;
  line-height:1.7;
  color:var(--text-light);

  padding-bottom:2px;

  transition:0.3s ease;
}

/* ACTIVE */
.faq-item.active .faq-answer{
  max-height:220px;
}

/* ACTIVE COLORS */
.faq-item.active .faq-question span{
  color:#ffffff;
}

.faq-item.active .faq-answer p{
  color:rgba(255,255,255,0.88);
}

.faq-item.active .faq-icon{
  background:#ffffff;
  transform:rotate(360deg);
}

.faq-item.active .faq-icon i{
  color:var(--primary);
}

/* MOBILE */
@media(max-width:991px){

  .faq-section{
    grid-template-columns:1fr;
    gap:38px;
  }

  .faq-left{
    position:relative;
    top:0;
  }

  .faq-left h2{
    font-size:38px;
  }

  .faq-left p{
    max-width:100%;
    font-size:15px;
  }

}

@media(max-width:768px){

  .faq-section{
    padding:60px 18px;
  }

  .faq-left h2{
    font-size:30px;
  }

  .faq-question{
    padding:18px 0;
  }

  .faq-question span{
    font-size:15px;
  }

  .faq-answer p{
    font-size:14px;
    line-height:1.7;
  }

  .faq-item{
    padding:0 18px;
    border-radius:14px;
  }

}

/*=========================================
CTA SECTION
=========================================*/

.cta-section{
  padding:80px 0;
  position:relative;
  overflow:hidden;
}

/*==========================
LIGHT THEME
==========================*/

html[data-theme="light"] .cta-section{
  background:#ffffff;
}

/*==========================
DARK THEME
==========================*/

html[data-theme="dark"] .cta-section{
  background:#090909;
}

/*=========================================
CTA BOX
=========================================*/

.cta-box{

  position:relative;
  overflow:hidden;

  max-width:1120px;

  margin:auto;

  padding:55px 50px;

  border-radius:28px;

  text-align:center;

  border:1px solid var(--border);

  isolation:isolate;
}

/* Light */

html[data-theme="light"] .cta-box{

  background:
  linear-gradient(
      135deg,
      #ffffff 0%,
      #f7fff8 45%,
      #f1ffef 100%
  );

  box-shadow:
      0 18px 50px rgba(15,23,42,.06);
}

/* Dark */

html[data-theme="dark"] .cta-box{

  background:
  linear-gradient(
      135deg,
      #0d160b,
      #101010
  );

  box-shadow:
      0 22px 55px rgba(0,0,0,.45);
}

/*=========================================
BACKGROUND GLOW
=========================================*/

.cta-box::before{

  content:"";

  position:absolute;

  width:240px;
  height:240px;

  left:-120px;
  top:-120px;

  border-radius:50%;

  background:
  radial-gradient(
      circle,
      rgba(118, 216, 65, 0.18),
      transparent 72%
  );

  z-index:-1;
}

.cta-box::after{

  content:"";

  position:absolute;

  width:240px;
  height:240px;

  right:-120px;
  bottom:-120px;

  border-radius:50%;

  background:
  radial-gradient(
      circle,
      rgba(80, 216, 65, 0.14),
      transparent 72%
  );

  z-index:-1;
}

/*=========================================
TOP BORDER
=========================================*/

.cta-box .top-line{

  position:absolute;

  left:0;
  top:0;

  width:100%;
  height:2px;

  background:
  linear-gradient(
      90deg,
      transparent,
      var(--primary-light),
      var(--primary),
      var(--primary-dark),
      transparent
  );
}

/*=========================================
BADGE
=========================================*/

.cta-badge{

  display:inline-flex;
  align-items:center;
  gap:8px;

  padding:8px 16px;

  border-radius:50px;

  margin-bottom:18px;

  color:var(--primary);

  font-size:12px;
  font-weight:700;
  letter-spacing:1px;

  text-transform:uppercase;

  background:rgba(65, 216, 70, 0.1);

  border:1px solid rgba(8,144,0,.22);
}

.cta-badge i{

  font-size:15px;
}

/*=========================================
TITLE
=========================================*/

.cta-box h2{

  font-size:48px;

  line-height:1.12;

  color:var(--heading);

  margin-bottom:14px;

  font-weight:800;
}

.cta-box h2 span{

  color:var(--primary);

  display:block;
}

/*=========================================
DESCRIPTION
=========================================*/

.cta-box p{

  max-width:620px;

  margin:auto;

  color:var(--text-light);

  font-size:15px;

  line-height:1.75;
}

/*=========================================
BUTTONS
=========================================*/

.cta-buttons{

  display:flex;

  justify-content:center;

  gap:14px;

  margin:30px 0;

  flex-wrap:wrap;
}

.cta-btn{

  display:flex;

  align-items:center;
  justify-content:center;
  gap:10px;

  height:52px;

  padding:0 28px;

  border-radius:14px;

  text-decoration:none;

  font-weight:700;

  transition:.35s;
}

.primary-btn{

  color:#fff;

  background:
  linear-gradient(
      135deg,
      var(--primary-light),
      var(--primary),
      var(--primary-dark)
  );

  box-shadow:
      0 15px 35px rgba(8,144,0,.22);
}

.primary-btn:hover{

  transform:translateY(-4px);

  box-shadow:
      0 22px 40px rgba(65, 216, 78, 0.32);
}

.secondary-btn{

  border:1px solid var(--border);

  color:var(--heading);
}

html[data-theme="light"] .secondary-btn{

  background:#ffffff;
}

html[data-theme="dark"] .secondary-btn{

  background:#191919;
}

.secondary-btn:hover{

  color:var(--primary);

  border-color:var(--primary);

  transform:translateY(-4px);
}

/*=========================================
FEATURE PILLS
=========================================*/

.cta-features{

  display:flex;

  justify-content:center;

  gap:12px;

  flex-wrap:wrap;
}

.cta-features div{

  display:flex;

  align-items:center;

  gap:8px;

  padding:10px 18px;

  border-radius:40px;

  transition:.35s;

  border:1px solid var(--border);
}

/* Light */

html[data-theme="light"] .cta-features div{

  background:#ffffff;
}

/* Dark */

html[data-theme="dark"] .cta-features div{

  background:#161616;
}

.cta-features div:hover{

  transform:translateY(-3px);

  border-color:rgba(8,144,0,.35);

  box-shadow:
      0 10px 25px rgba(110, 216, 65, 0.1);
}

.cta-features i{

  color:var(--primary);

  font-size:17px;
}

.cta-features span{

  color:var(--heading);

  font-size:13px;

  font-weight:600;
}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:992px){

  .cta-box{

      padding:45px 35px;
  }

  .cta-box h2{

      font-size:40px;
  }
}

@media(max-width:768px){

  .cta-section{

      padding:70px 0;
  }

  .cta-box{

      padding:40px 22px;

      border-radius:22px;
  }

  .cta-box h2{

      font-size:32px;
  }

  .cta-box p{

      font-size:14px;
  }

  .cta-buttons{

      flex-direction:column;
  }

  .cta-btn{

      width:100%;
  }

  .cta-features{

      gap:10px;
  }

  .cta-features div{

      width:100%;

      justify-content:center;
  }
}

/*=========================================
PREMIUM DIVIDER
=========================================*/

.premium-divider{

  position:relative;

  width:100%;
  height:90px;

  display:flex;
  align-items:center;
  justify-content:center;

  overflow:hidden;
}

/* Main Line */

.premium-divider::before{

  content:"";

  position:absolute;

  left:0;
  top:50%;

  width:100%;
  height:2px;

  transform:translateY(-50%);

  background:linear-gradient(
      90deg,
      transparent 0%,
      rgba(8,144,0,.08) 15%,
      rgba(216,164,65,.65) 50%,
      rgba(8,144,0,.08) 85%,
      transparent 100%
  );
}

/* Secondary Glow Line */

.premium-divider::after{

  content:"";

  position:absolute;

  left:50%;
  top:50%;

  transform:translate(-50%,-50%);

  width:260px;
  height:26px;

  border-radius:50%;

  background:radial-gradient(
      ellipse,
      rgba(216,164,65,.20),
      transparent 70%);

  filter:blur(16px);

  pointer-events:none;
}

/* Center Diamond */

.premium-divider span{

  position:relative;

  width:22px;
  height:22px;

  transform:rotate(45deg);

  border-radius:4px;

  z-index:2;

  background:linear-gradient(
      135deg,
      var(--primary-light),
      var(--primary),
      var(--primary-dark));

  box-shadow:
      0 0 0 6px rgba(8,144,0,.08),
      0 0 30px rgba(8,144,0,.35);

  animation:dividerPulse 3s ease-in-out infinite;
}

/* Small Inner Dot */

.premium-divider span::before{

  content:"";

  position:absolute;

  left:50%;
  top:50%;

  width:8px;
  height:8px;

  border-radius:50%;

  background:#ffffff;

  transform:
      translate(-50%,-50%)
      rotate(-45deg);
}

/*=========================
LIGHT THEME
=========================*/
html[data-theme="light"] .premium-divider::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(8,144,0,.15),
    rgba(8,144,0,.75),
    rgba(8,144,0,.15),
    transparent
  );
}

html[data-theme="light"] .premium-divider::after {
  background: radial-gradient(
    ellipse,
    rgba(8,144,0,.18),
    transparent 70%
  );
}

html[data-theme="dark"] .premium-divider::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(11,192,0,.10),
    rgba(8,144,0,.90),
    rgba(11,192,0,.10),
    transparent
  );
}

html[data-theme="dark"] .premium-divider::after {
  background: radial-gradient(
    ellipse,
    rgba(8,144,0,.28),
    transparent 70%
  );
}

/*=========================
ANIMATION
=========================*/

@keyframes dividerPulse{

  0%,100%{

      transform:rotate(45deg) scale(1);

      box-shadow:
          0 0 0 6px rgba(8,144,0,.08),
          0 0 25px rgba(8,144,0,.25);
  }

  50%{

      transform:rotate(45deg) scale(1.15);

      box-shadow:
          0 0 0 10px rgba(8,144,0,.12),
          0 0 45px rgba(8,144,0,.45);
  }
}


