@import url('./header.css');
@import url('https://cdn.jsdelivr.net/npm/remixicon@4.2.0/fonts/remixicon.css');

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

body{
  font-family:'Plus Jakarta Sans',sans-serif;
  background:#ffffff;
  color:#000;
}

img{
  width:100%;
  display:block;
}

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

.fx-hero-section{
  position:relative;

  width:100%;
  overflow:hidden;

  padding:45px 0 75px;

  background:
  radial-gradient(circle at top left, rgba(72,184,233,0.08), transparent 26%),
  radial-gradient(circle at bottom right, rgba(52,120,255,0.08), transparent 26%),
  linear-gradient(180deg,#f8fbff 0%, #eef5ff 100%);
}

/* GRID EFFECT */

.fx-hero-section::before{
  content:"";

  position:absolute;
  inset:0;

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

  background-size:65px 65px;

  opacity:0.35;
}

/* ================= WRAPPER ================= */

.fx-hero-wrapper{
  position:relative;
  z-index:5;

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

  gap:36px;
}

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

.fx-hero-content{
  width:47%;
}

/* BADGE */

.fx-hero-badge{
  display:inline-flex;
  align-items:center;
  gap:7px;

  padding:8px 15px;

  border-radius:100px;

  background:rgba(72,184,233,0.08);

  border:1px solid rgba(72,184,233,0.14);

  color:#1f8fe4;

  font-size:14px;
  font-weight:700;
  letter-spacing:0.4px;

  margin-bottom:20px;
}

.fx-hero-badge i{
  font-size:16px;
}

/* TITLE */

.fx-hero-content h1{
  font-size:54px;
  line-height:1.04;
  font-weight:800;

  letter-spacing:-2px;

  color:#07152f;

  margin-bottom:20px;

  max-width:560px;
}

/* TEXT */

.fx-hero-content p{
  max-width:540px;

  font-size:16px;
  line-height:1.75;

  color:#5d6b82;

  margin-bottom:30px;
}

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

.fx-hero-buttons{
  display:flex;
  align-items:center;
  gap:14px;

  margin-bottom:38px;
}

/* PRIMARY */

.fx-hero-primary-btn{
  position:relative;

  height:52px;

  padding:0 26px;

  border-radius:14px;

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

  background:linear-gradient(
    135deg,
    #48b8e9,
    #3478ff
  );

  color:#fff;

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

  overflow:hidden;

  box-shadow:
  0 14px 34px rgba(72,184,233,0.20);

  transition:0.35s ease;
}

/* SHINE */

.fx-hero-primary-btn::before{
  content:"";

  position:absolute;

  top:0;
  left:-120px;

  width:80px;
  height:100%;

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

  transform:skewX(-22deg);

  transition:0.55s ease;
}

.fx-hero-primary-btn:hover::before{
  left:130%;
}

.fx-hero-primary-btn:hover{
  transform:translateY(-3px);

  box-shadow:
  0 18px 40px rgba(72,184,233,0.26);
}

.fx-hero-primary-btn i{
  font-size:18px;
  transition:0.3s ease;
}

.fx-hero-primary-btn:hover i{
  transform:translateX(4px);
}

/* SECONDARY */

.fx-hero-secondary-btn{
  height:52px;

  padding:0 24px;

  border-radius:14px;

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

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

  border:1px solid rgba(72,184,233,0.14);

  backdrop-filter:blur(14px);

  color:#07152f;

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

  transition:0.35s ease;
}

.fx-hero-secondary-btn:hover{
  background:#ffffff;

  transform:translateY(-3px);

  border-color:rgba(72,184,233,0.22);

  box-shadow:
  0 14px 32px rgba(0,0,0,0.05);
}

/* ================= STATS ================= */

.fx-hero-stats{
  display:flex;
  align-items:center;
  gap:14px;

  flex-wrap:wrap;
}

/* BOX */

.fx-stat-box{
  min-width:122px;

  padding:14px 16px;

  border-radius:18px;

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

  border:1px solid rgba(72,184,233,0.08);

  backdrop-filter:blur(16px);

  transition:0.35s ease;
}

.fx-stat-box:hover{
  transform:translateY(-4px);

  background:#ffffff;

  border-color:#8fd8ff;

  box-shadow:
  0 14px 30px rgba(72,184,233,0.14);
}

.fx-stat-box h3{
  font-size:24px;
  font-weight:800;

  color:#07152f;

  margin-bottom:3px;
}

.fx-stat-box p{
  font-size:11px;
  color:#67758c;

  margin:0;
  line-height:1.5;
}

/* ================= RIGHT IMAGE ================= */

.fx-hero-image{
  position:relative;

  width:53%;

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

/* GLOW */

.fx-image-glow{
  position:absolute;

  width:380px;
  height:380px;

  border-radius:50%;

  background:rgba(72,184,233,0.14);

  filter:blur(100px);

  z-index:1;
}

/* IMAGE */

.fx-hero-image img{
  position:relative;
  z-index:2;

  width:100%;
  max-width:610px;

  object-fit:contain;

  animation:floatImage 5s ease-in-out infinite;

  filter:
  drop-shadow(0 24px 50px rgba(52,120,255,0.14));
}

/* FLOAT */

@keyframes floatImage{

  0%{
    transform:translateY(0);
  }

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

  100%{
    transform:translateY(0);
  }

}

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

@media(max-width:1200px){

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

}

@media(max-width:992px){

  .fx-hero-wrapper{
    flex-direction:column;
  }

  .fx-hero-content,
  .fx-hero-image{
    width:100%;
  }

  .fx-hero-content{
    text-align:center;
  }

  .fx-hero-content h1{
    margin:auto auto 18px;
  }

  .fx-hero-content p{
    margin:auto auto 30px;
  }

  .fx-hero-buttons{
    justify-content:center;
  }

  .fx-hero-stats{
    justify-content:center;
  }

}

@media(max-width:768px){

  .fx-hero-section{
    padding:35px 0 60px;
  }

  .fx-hero-content h1{
    font-size:36px;
    line-height:1.08;

    letter-spacing:-1px;
  }

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

  .fx-hero-buttons{
    flex-direction:column;
    align-items:stretch;

    gap:12px;
  }

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

  .fx-hero-stats{
    gap:12px;
  }

  .fx-stat-box{
    width:calc(50% - 6px);
    min-width:auto;
  }

  .fx-stat-box h3{
    font-size:20px;
  }

  .fx-stat-box p{
    font-size:10px;
  }

  .fx-image-glow{
    width:240px;
    height:240px;
  }

  .fx-hero-image img{
    max-width:420px;
  }

}

/* Tradingview Widget */
.tradingview-widget-container {
    width: 100%;
    max-width: 720px;
    margin: 40px auto 0 auto;
  }

/* ================= WHY SECTION ================= */

.why-section{
  position:relative;

  width:100%;
  overflow:hidden;

  padding:95px 5%;

  background:#eef7ff;
}

/* LIGHT GRID */

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

  position:absolute;
  inset:0;

  background-image:
  linear-gradient(rgba(72,184,233,0.04) 1px, transparent 1px),
  linear-gradient(90deg, rgba(72,184,233,0.04) 1px, transparent 1px);

  background-size:70px 70px;

  opacity:0.45;
}

/* SOFT GLOW */

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

  position:absolute;

  width:340px;
  height:340px;

  background:rgba(72,184,233,0.12);

  border-radius:50%;

  filter:blur(120px);

  top:-120px;
  right:-80px;
}

/* ================= WRAPPER ================= */

.why-wrapper{
  position:relative;
  z-index:5;

  max-width:1300px;
  margin:auto;

  display:grid;
  grid-template-columns:360px 1fr;
  gap:55px;
}

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

.why-left{
  position:sticky;
  top:120px;

  height:max-content;
}

/* TAG */

.why-left::before{
  content:"WHY CHOOSE DEMO";

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

  padding:8px 16px;

  border-radius:100px;

  background:#dff2ff;

  border:1px solid rgba(72,184,233,0.14);

  color:#3478ff;

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

  margin-bottom:22px;
}

/* TITLE */

.why-left h2{
  font-size:40px;
  line-height:1.05;
  font-weight:800;

  letter-spacing:-1.8px;

  color:#06142e;

  margin-bottom:18px;
}

/* DESCRIPTION */

.why-desc{
  max-width:320px;

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

  color:#617089;

  margin-bottom:34px;
}

/* MORE BOX */

.more-box{
  padding:24px;

  border-radius:24px;

  background:#ffffff;

  border:1px solid rgba(72,184,233,0.10);

  margin-bottom:28px;

  box-shadow:
  0 10px 30px rgba(15,40,90,0.05);

  transition:0.35s ease;
}

.more-box:hover{
  transform:translateY(-5px);

  box-shadow:
  0 18px 40px rgba(52,120,255,0.10);
}

.more-box h4{
  font-size:15px;
  font-weight:800;

  color:#06142e;

  margin-bottom:18px;
}

.more-box ul{
  list-style:none;
}

.more-box ul li{
  display:flex;
  align-items:flex-start;

  gap:10px;

  font-size:13px;
  line-height:1.7;

  color:#617089;

  margin-bottom:14px;
}

.more-box ul li:last-child{
  margin-bottom:0;
}

.more-box ul li i{
  min-width:18px;

  font-size:16px;

  color:#3478ff;

  margin-top:2px;
}

/* BUTTON */

.why-btn{
  position:relative;

  width:max-content;
  height:52px;

  padding:0 24px;

  border-radius:14px;

  background:#3478ff;

  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  color:#ffffff;

  font-size:14px;
  font-weight:700;
  text-decoration:none;

  overflow:hidden;

  transition:0.35s ease;

  box-shadow:
  0 12px 28px rgba(52,120,255,0.18);
}

/* LIGHT EFFECT */

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

  position:absolute;

  width:80px;
  height:100%;

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

  top:0;
  left:-90px;

  transform:skewX(-20deg);

  transition:0.45s ease;
}

.why-btn:hover::before{
  left:130%;
}

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

  box-shadow:
  0 18px 38px rgba(52,120,255,0.24);
}

.why-btn i{
  font-size:17px;

  transition:0.3s ease;
}

.why-btn:hover i{
  transform:translateX(4px);
}

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

.why-right{
  display:grid;

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

  gap:22px;
}

/* CARD */

.why-card{
  position:relative;

  padding:28px 24px;

  border-radius:26px;

  background:#ffffff;

  border:1px solid rgba(72,184,233,0.10);

  overflow:hidden;

  transition:0.35s ease;

  box-shadow:
  0 10px 30px rgba(15,40,90,0.05);
}

/* TOP LIGHT */

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

  position:absolute;

  top:0;
  left:0;

  width:100%;
  height:1px;

  background:rgba(72,184,233,0.20);
}

/* GLOW */

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

  position:absolute;

  width:140px;
  height:140px;

  background:rgba(72,184,233,0.10);

  border-radius:50%;

  filter:blur(60px);

  top:-40px;
  right:-40px;

  opacity:0;

  transition:0.35s ease;
}

/* HOVER */

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

  border-color:rgba(72,184,233,0.18);

  box-shadow:
  0 22px 50px rgba(52,120,255,0.10);
}

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

/* ICON */

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

  border-radius:18px;

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

  margin-bottom:22px;

  background:#e9f6ff;

  border:1px solid rgba(72,184,233,0.12);

  transition:0.35s ease;
}

.why-card:hover .why-icon{
  transform:scale(1.06);

  background:#dff2ff;
}

.why-icon i{
  font-size:28px;

  color:#3478ff;
}

/* CONTENT */

.why-card h3{
  font-size:17px;
  line-height:1.45;
  font-weight:800;

  color:#06142e;

  margin-bottom:12px;
}

.why-card p{
  font-size:13px;
  line-height:1.8;

  color:#617089;
}

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

@media(max-width:1200px){

  .why-wrapper{
    grid-template-columns:1fr;
  }

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

}

@media(max-width:992px){

  .why-right{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:768px){

  .why-section{
    padding:70px 20px;
  }

  .why-left h2{
    font-size:36px;
  }

  .why-desc{
    max-width:100%;

    font-size:13px;
  }

  .why-right{
    grid-template-columns:1fr;

    gap:18px;
  }

  .why-card{
    padding:24px 20px;

    border-radius:22px;
  }

  .why-card h3{
    font-size:15px;
  }

  .why-card p{
    font-size:12px;
    line-height:1.7;
  }

  .more-box{
    padding:20px;
  }

}

/* ================= MARKETS SECTION ================= */

.markets-section{
  position:relative;

  width:100%;
  overflow:hidden;

  padding:100px 5%;

  background:#ffffff;
}

/* GRID EFFECT */

.markets-section::before{
  content:"";

  position:absolute;
  inset:0;

  background-image:
  linear-gradient(rgba(52,120,255,0.03) 1px, transparent 1px),
  linear-gradient(90deg, rgba(52,120,255,0.03) 1px, transparent 1px);

  background-size:70px 70px;

  opacity:0.35;
}

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

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

  max-width:720px;
  margin:auto;

  text-align:center;

  margin-bottom:60px;
}

.markets-heading span{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:8px 18px;

  border-radius:100px;

  background:#eef7ff;

  border:1px solid rgba(72,184,233,0.16);

  color:#3478ff;

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

  margin-bottom:20px;
}

.markets-heading h2{
  font-size:42px;
  line-height:1.08;
  font-weight:800;

  letter-spacing:-1.5px;

  color:#07152f;

  margin-bottom:16px;
}

.markets-heading p{
  font-size:14px;
  line-height:1.8;

  color:#66758d;
}

/* ================= WRAPPER ================= */

.markets-wrapper{
  position:relative;
  z-index:5;

  max-width:1350px;
  margin:auto;

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

  gap:22px;
}

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

.market-card{
  position:relative;

  min-height:540px;

  padding:32px 28px;

  padding-bottom:240px;

  border-radius:28px;

  overflow:hidden;

  background:#eef7ff;

  border:1px solid rgba(72,184,233,0.14);

  transition:0.35s ease;

  display:flex;
  flex-direction:column;

  box-shadow:
  0 10px 30px rgba(15,40,90,0.04);
}

/* TOP BORDER */

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

  position:absolute;

  top:0;
  left:0;

  width:100%;
  height:4px;

  background:#48b8e9;
}

/* HOVER */

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

  background:#f5fbff;

  border-color:rgba(72,184,233,0.24);

  box-shadow:
  0 22px 55px rgba(72,184,233,0.12);
}

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

.market-icon{
  width:62px;
  height:62px;

  border-radius:20px;

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

  margin-bottom:24px;

  background:#48b8e9;

  transition:0.35s ease;

  box-shadow:
  0 12px 28px rgba(72,184,233,0.18);
}

.market-card:hover .market-icon{
  background:#3478ff;

  transform:scale(1.06);
}

.market-icon i{
  font-size:28px;
  color:#fff;
}

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

.market-card h3{
  font-size:24px;
  line-height:1.2;
  font-weight:800;

  color:#07152f;

  margin-bottom:14px;

  transition:0.3s ease;
}

.market-card:hover h3{
  color:#3478ff;
}

.market-card p{
  font-size:13px;
  line-height:1.8;

  color:#66758d;

  margin-bottom:26px;
}

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

.market-features{
  list-style:none;

  margin-bottom:26px;
}

.market-features li{
  display:flex;
  align-items:center;

  gap:10px;

  margin-bottom:14px;

  font-size:13px;
  color:#1f2d48;
}

.market-features li i{
  width:18px;
  height:18px;

  border-radius:50%;

  background:#dff2ff;

  color:#3478ff;

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

  font-size:11px;

  flex-shrink:0;
}

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

.market-btn{
  position:relative;
  z-index:5;

  width:max-content;
  height:48px;

  padding:0 22px;

  border-radius:14px;

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

  background:
  linear-gradient(
    135deg,
    #48b8e9,
    #3478ff
  );

  color:#fff;

  font-size:13px;
  font-weight:700;
  text-decoration:none;

  overflow:hidden;

  transition:0.35s ease;

  margin-top:auto;

  box-shadow:
  0 14px 34px rgba(72,184,233,0.18);
}

/* BUTTON LIGHT */

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

  position:absolute;

  width:90px;
  height:100%;

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

  top:0;
  left:-120px;

  transform:skewX(-20deg);

  transition:0.5s ease;
}

.market-btn:hover::before{
  left:130%;
}

.market-btn:hover{
  transform:translateY(-3px);

  box-shadow:
  0 18px 40px rgba(72,184,233,0.24);
}

.market-btn i{
  font-size:17px;

  transition:0.3s ease;
}

.market-btn:hover i{
  transform:translateX(5px);
}

/* ================= IMAGE ================= */

.market-image{
  position:absolute;

  right:-10px;
  bottom:-5px;

  width:210px;

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

  pointer-events:none;

  opacity:0.96;

  transition:0.4s ease;
}

/* DIFFERENT IMAGE SIZES */

.market-card:nth-child(1) .market-image{
  width:230px;
}

.market-card:nth-child(2) .market-image{
  width:240px;
}

.market-card:nth-child(3) .market-image{
  width:190px;
  right:10px;
}

.market-card:nth-child(4) .market-image{
  width:220px;
}

.market-card:hover .market-image{
  transform:translateY(-8px) scale(1.03);
}

.market-image img{
  width:100%;

  object-fit:contain;

  filter:
  drop-shadow(0 0 20px rgba(72,184,233,0.12));
}

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

@media(max-width:1200px){

  .markets-wrapper{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:768px){

  .markets-section{
    padding:75px 20px;
  }

  .markets-heading{
    margin-bottom:42px;
  }

  .markets-heading h2{
    font-size:30px;
    line-height:1.12;
  }

  .markets-heading p{
    font-size:13px;
  }

  .markets-wrapper{
    grid-template-columns:1fr;
  }

  .market-card{
    min-height:auto;

    padding:28px 22px 40px;

    border-radius:24px;
  }

  .market-icon{
    width:56px;
    height:56px;

    border-radius:18px;
  }

  .market-icon i{
    font-size:24px;
  }

  .market-card h3{
    font-size:20px;
  }

  .market-card p,
  .market-features li{
    font-size:12.5px;
  }

  .market-image{
    position:relative;

    width:170px !important;

    right:auto;
    bottom:auto;

    margin-top:20px;
    margin-left:auto;
  }

  .market-btn{
    height:44px;

    font-size:12px;

    border-radius:12px;
  }

}

/* ================= FUTURISTIC ACCOUNTS SECTION ================= */

.accounts-section{
  position:relative;
  width:100%;
  overflow:hidden;

  padding:80px 5%;

  background-color: #eef5ff;
}

/* GRID EFFECT */

.accounts-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;
}

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

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

  max-width:650px;
  margin:auto;

  text-align:center;

  margin-bottom:50px;
}

.accounts-heading span{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:7px 15px;

  border-radius:100px;

  background:rgba(10,132,255,0.07);
  border:1px solid rgba(10,132,255,0.12);

  color:#0a84ff;

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

  margin-bottom:18px;
}

.accounts-heading h2{
  font-size:38px;
  line-height:1.1;
  font-weight:800;

  letter-spacing:-1.2px;

  color:#07152f;

  margin-bottom:14px;
}

.accounts-heading p{
  font-size:13px;
  line-height:1.7;

  color:#617089;

  max-width:520px;
  margin:auto;
}

/* ================= WRAPPER ================= */

.accounts-wrapper{
  position:relative;
  z-index:5;

  max-width:1180px;
  margin:auto;

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

  gap:20px;
}

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

.account-card{
  position:relative;

  padding:28px 24px;

  border-radius:24px;

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

  border:1px solid rgba(10,132,255,0.07);

  backdrop-filter:blur(14px);

  overflow:hidden;

  transition:0.35s ease;

  display:flex;
  flex-direction:column;

  min-height:470px;

  box-shadow:
  0 10px 35px rgba(0,0,0,0.035);
}

/* TOP LIGHT */

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

  position:absolute;

  top:0;
  left:0;

  width:100%;
  height:1px;

  background:linear-gradient(to right,
  transparent,
  rgba(10,132,255,0.32),
  transparent);
}

/* HOVER */

.account-card:hover{
  transform:translateY(-6px);

  border-color:rgba(10,132,255,0.15);

  box-shadow:
  0 18px 45px rgba(10,132,255,0.08);
}

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

.popular-tag{
  position:absolute;

  top:18px;
  right:18px;

  height:28px;

  padding:0 12px;

  border-radius:100px;

  background:#0a84ff;

  color:#fff;

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

  font-size:9px;
  font-weight:700;
  letter-spacing:0.9px;
}

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

.account-icon{
  width:56px;
  height:56px;

  border-radius:18px;

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

  margin-bottom:22px;

  position:relative;

  overflow:hidden;
}

.account-icon::before{
  content:"";

  position:absolute;
  inset:0;

  background:linear-gradient(
  135deg,
  rgba(255,255,255,0.3),
  transparent);
}

.account-icon i{
  position:relative;
  z-index:2;

  font-size:24px;
  color:#fff;
}

.standard-icon{
  background:linear-gradient(135deg,#00b894,#00cec9);
}

.pro-icon{
  background:linear-gradient(135deg,#0a84ff,#4361ee);
}

.ecn-icon{
  background:linear-gradient(135deg,#7b2ff7,#b5179e);
}

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

.account-card h3{
  font-size:22px;
  font-weight:800;

  color:#07152f;

  margin-bottom:6px;
}

.account-card p{
  font-size:13px;
  line-height:1.7;

  color:#66758d;

  margin-bottom:22px;
}

/* ================= PRICE ================= */

.account-price{
  margin-bottom:24px;
}

.account-price h4{
  font-size:34px;
  font-weight:800;

  color:#07152f;

  line-height:1;
}

.account-price span{
  font-size:12px;
  color:#7a8ca5;

  font-weight:500;
}

/* ================= LIST ================= */

.account-card ul{
  list-style:none;

  margin-bottom:28px;

  flex:1;
}

.account-card ul li{
  display:flex;
  align-items:flex-start;

  gap:10px;

  margin-bottom:13px;

  font-size:13px;
  line-height:1.55;

  color:#1d2b45;
}

.account-card ul li i{
  width:18px;
  height:18px;

  border-radius:50%;

  background:rgba(10,132,255,0.10);

  color:#0a84ff;

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

  font-size:11px;

  flex-shrink:0;

  margin-top:2px;
}

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

.account-btn{
  position:relative;

  width:100%;
  height:50px;

  border-radius:14px;

  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;

  color:#fff;

  font-size:14px;
  font-weight:700;
  text-decoration:none;

  overflow:hidden;

  transition:0.3s ease;
}

.account-btn::before{
  content:"";

  position:absolute;

  width:90px;
  height:100%;

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

  top:0;
  left:-110px;

  transform:skewX(-20deg);

  transition:0.45s ease;
}

.account-btn:hover::before{
  left:125%;
}

.account-btn i{
  font-size:16px;
  transition:0.3s ease;
}

.account-btn:hover i{
  transform:translateX(4px);
}

.standard-btn{
  background:linear-gradient(135deg,#00b894,#00cec9);
}

.pro-btn{
  background:linear-gradient(135deg,#0a84ff,#4361ee);
}

.ecn-btn{
  background:linear-gradient(135deg,#7b2ff7,#b5179e);
}

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

@media(max-width:1100px){

  .accounts-wrapper{
    grid-template-columns:1fr;
    max-width:560px;
  }

}

@media(max-width:768px){

  .accounts-section{
    padding:70px 20px;
  }

  .accounts-heading{
    margin-bottom:40px;
  }

  .accounts-heading h2{
    font-size:30px;
  }

  .accounts-heading p{
    font-size:12px;
  }

  .account-card{
    padding:24px 20px;
    border-radius:22px;

    min-height:auto;
  }

  .account-card h3{
    font-size:20px;
  }

  .account-price h4{
    font-size:30px;
  }

  .account-card ul li{
    font-size:12px;
  }

  .account-btn{
    height:48px;
    font-size:12px;
  }

}

/* ================= 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%);
}

/* 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(0,132,255,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;
}

/* TAG */
.payment-tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:7px 15px;

  border-radius:100px;

  background:rgba(10,132,255,0.07);
  border:1px solid rgba(10,132,255,0.10);

  color:#0a84ff;

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

  margin-bottom:18px;
}

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

  letter-spacing:-1px;

  color:#06142e;

  margin-bottom:14px;
}

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

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

  color:#617089;
}

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

.payment-slider{
  position:relative;

  width:100%;
  overflow:hidden;
}

/* LEFT FADE */
.payment-slider::before{
  content:"";

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

  width:120px;
  height:100%;

  z-index:3;

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

/* RIGHT FADE */
.payment-slider::after{
  content:"";

  position:absolute;
  right:0;
  top:0;

  width:120px;
  height:100%;

  z-index:3;

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

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

  display:flex;
  align-items:center;

  gap:18px;

  width:max-content;

  animation:paymentScroll 18s linear infinite;
}

/* CARD */
.payment-item{
  position:relative;

  width:180px;
  min-width:180px;
  height:88px;

  border-radius:18px;

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

  border:1px solid rgba(10,132,255,0.08);

  backdrop-filter:blur(10px);

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

  padding:18px;

  overflow:hidden;

  transition:0.35s ease;

  box-shadow:
  0 8px 22px rgba(0,0,0,0.035);
}

/* TOP LIGHT LINE */
.payment-item::before{
  content:"";

  position:absolute;

  top:0;
  left:0;

  width:100%;
  height:1px;

  background:linear-gradient(to right,
  transparent,
  rgba(10,132,255,0.45),
  transparent);
}

/* SOFT GLOW */
.payment-item::after{
  content:"";

  position:absolute;

  width:100px;
  height:100px;

  background:rgba(10,132,255,0.08);

  border-radius:50%;

  filter:blur(45px);

  opacity:0;

  transition:0.35s ease;
}

/* HOVER */
.payment-item:hover{
  transform:translateY(-5px);

  border-color:rgba(10,132,255,0.16);

  box-shadow:
  0 14px 30px rgba(10,132,255,0.10);
}

.payment-item:hover::after{
  opacity:1;
}

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

  max-width:95px;
  max-height:38px;

  object-fit:contain;

  opacity:0.88;

  transition:0.35s ease;
}

.payment-item:hover img{
  transform:scale(1.04);
  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;
  }

}

/* ================= FUTURISTIC IB SECTION ================= */

.ib-section{
  position:relative;
  width:100%;
  overflow:hidden;

  padding:85px 5%;

  background:
  radial-gradient(circle at top left, rgba(0,132,255,0.10), transparent 28%),
  radial-gradient(circle at bottom right, rgba(0,89,255,0.12), transparent 30%),
  linear-gradient(180deg,#020817 0%, #050d1f 100%);
}

/* GRID OVERLAY */
.ib-section::before{
  content:"";
  position:absolute;
  inset:0;

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

  background-size:70px 70px;

  opacity:0.22;
}

/* GLOW */
.ib-section::after{
  content:"";
  position:absolute;

  width:340px;
  height:340px;

  background:rgba(0,132,255,0.12);

  border-radius:50%;
  filter:blur(110px);

  top:-100px;
  right:-60px;
}

/* WRAPPER */
.ib-wrapper{
  position:relative;
  z-index:5;

  max-width:1200px;
  margin:auto;

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

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

.ib-content{
  position:relative;
}

/* TAG */
.ib-content::before{
  content:"PARTNER PROGRAM";

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

  padding:7px 15px;

  border-radius:100px;

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

  backdrop-filter:blur(10px);

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

  color:#55bbff;

  margin-bottom:22px;
}

/* TITLE */
.ib-content h2{
  font-size:48px;
  line-height:1.05;
  font-weight:800;

  letter-spacing:-1.5px;

  color:#ffffff;

  margin-bottom:18px;
}

/* SUBTITLE */
.ib-content h4{
  max-width:500px;

  font-size:16px;
  line-height:1.7;
  font-weight:600;

  color:rgba(255,255,255,0.9);

  margin-bottom:14px;
}

/* TEXT */
.ib-content p{
  max-width:480px;

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

  color:rgba(255,255,255,0.58);

  margin-bottom:30px;
}

/* BUTTON */
.ib-btn{
  position:relative;

  width:max-content;
  height:50px;

  padding:0 24px;

  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  border-radius:14px;

  background:#0a84ff;

  color:#ffffff;

  font-size:14px;
  font-weight:700;
  text-decoration:none;

  overflow:hidden;

  transition:0.35s ease;
}

/* BUTTON LIGHT */
.ib-btn::before{
  content:"";

  position:absolute;

  width:90px;
  height:100%;

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

  top:0;
  left:-110px;

  transform:skewX(-20deg);

  transition:0.5s ease;
}

.ib-btn:hover::before{
  left:130%;
}

.ib-btn:hover{
  transform:translateY(-3px);

  box-shadow:
  0 10px 30px rgba(10,132,255,0.28);
}

.ib-btn i{
  font-size:16px;
  transition:0.3s ease;
}

.ib-btn:hover i{
  transform:translateX(4px);
}

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

.ib-image{
  position:relative;

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

/* GLASS EFFECT */
.ib-image::before{
  content:"";

  position:absolute;

  width:100%;
  height:100%;

  border-radius:28px;

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

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

  backdrop-filter:blur(18px);

  z-index:1;
}

/* GLOW */
.ib-image::after{
  content:"";

  position:absolute;

  width:260px;
  height:260px;

  background:rgba(0,132,255,0.24);

  border-radius:50%;

  filter:blur(90px);

  z-index:0;
}

/* IMAGE */
.ib-image img{
  position:relative;
  z-index:3;

  width:100%;
  max-width:430px;

  object-fit:contain;

  filter:
  drop-shadow(0 0 20px rgba(0,132,255,0.24))
  drop-shadow(0 0 60px rgba(0,132,255,0.16));

  /* animation:floatImage 4s ease-in-out infinite; */
}

/* FLOAT */
@keyframes floatImage{

  0%{
    transform:translateY(0px);
  }

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

  100%{
    transform:translateY(0px);
  }

}

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

@media(max-width:1100px){

  .ib-wrapper{
    grid-template-columns:1fr;
    gap:50px;
  }

  .ib-content{
    text-align:center;
  }

  .ib-content h4,
  .ib-content p{
    margin-left:auto;
    margin-right:auto;
  }

  .ib-btn{
    margin:auto;
  }

}

@media(max-width:768px){

  .ib-section{
    padding:70px 20px;
  }

  .ib-content h2{
    font-size:34px;
  }

  .ib-content h4{
    font-size:14px;
  }

  .ib-content p{
    font-size:12px;
    line-height:1.8;
  }

  .ib-btn{
    height:46px;
    padding:0 20px;

    font-size:13px;
  }

  .ib-image img{
    max-width:320px;
  }

}

/* ================= ENHANCED STEPS SECTION ================= */

.steps-section{
  position:relative;

  width:100%;
  overflow:hidden;

  padding:90px 5%;

  background:#ffffff;
}

/* LIGHT GRID */

.steps-section::before{
  content:"";

  position:absolute;
  inset:0;

  background-image:
  linear-gradient(rgba(52,120,255,0.03) 1px, transparent 1px),
  linear-gradient(90deg, rgba(52,120,255,0.03) 1px, transparent 1px);

  background-size:65px 65px;

  opacity:0.35;

  pointer-events:none;
}

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

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

  max-width:720px;
  margin:auto;

  text-align:center;
  margin-bottom:55px;
}

.steps-subtitle{
  display:inline-flex;
  align-items:center;
  gap:8px;

  padding:8px 16px;

  background:#eef7ff;

  border:1px solid rgba(72,184,233,0.16);

  border-radius:50px;

  font-size:10px;
  font-weight:700;
  letter-spacing:1.5px;
  text-transform:uppercase;

  color:#3478ff;

  margin-bottom:20px;
}

.steps-heading h2{
  font-size:42px;
  line-height:1.08;
  font-weight:800;

  letter-spacing:-1.5px;

  color:#071c3c;

  margin-bottom:16px;
}

.steps-heading p{
  font-size:14px;
  line-height:1.8;

  color:#5f6470;

  max-width:620px;
  margin:auto;
}

/* ================= WRAPPER ================= */

.steps-wrapper{
  position:relative;
  z-index:5;

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

  gap:22px;

  margin-bottom:45px;
}

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

.step-card{
  position:relative;

  padding:32px 28px;

  border-radius:24px;

  background:#eef7ff;

  border:1px solid rgba(72,184,233,0.14);

  overflow:hidden;

  transition:0.35s ease;

  box-shadow:
  0 10px 28px rgba(15,40,90,0.04);
}

/* TOP LIGHT */

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

  position:absolute;

  top:0;
  left:0;

  width:100%;
  height:4px;

  background:#48b8e9;
}

/* HOVER */

.step-card:hover{
  transform:translateY(-8px);

  background:#f4faff;

  border-color:rgba(72,184,233,0.24);

  box-shadow:
  0 18px 45px rgba(72,184,233,0.10);
}

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

.step-number{
  width:58px;
  height:58px;

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

  background:#48b8e9;

  border-radius:18px;

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

  color:#fff;

  margin-bottom:22px;

  transition:0.35s ease;

  box-shadow:
  0 10px 24px rgba(72,184,233,0.18);
}

/* NUMBER HOVER */

.step-card:hover .step-number{
  transform:scale(1.06);

  background:#3478ff;
}

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

.step-card h3{
  font-size:22px;
  line-height:1.3;
  font-weight:700;

  color:#071c3c;

  margin-bottom:14px;

  transition:0.3s ease;
}

.step-card:hover h3{
  color:#3478ff;
}

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

.step-card p{
  font-size:13px;
  line-height:1.8;

  color:#5f6470;
}

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

.steps-btn{
  position:relative;
  z-index:5;

  display:flex;
  justify-content:center;
}

.steps-btn a{
  position:relative;

  width:180px;
  height:55px;

  border-radius:14px;

  background:
  linear-gradient(
    135deg,
    #48b8e9,
    #3478ff
  );

  color:#fff;

  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;

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

  overflow:hidden;

  transition:0.35s ease;

  box-shadow:
  0 14px 34px rgba(72,184,233,0.20);
}

/* BUTTON LIGHT */

.steps-btn a::before{
  content:"";

  position:absolute;

  width:90px;
  height:100%;

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

  top:0;
  left:-120px;

  transform:skewX(-20deg);

  transition:0.5s ease;
}

.steps-btn a:hover::before{
  left:130%;
}

.steps-btn a:hover{
  transform:translateY(-4px);

  box-shadow:
  0 18px 42px rgba(72,184,233,0.28);
}

.steps-btn a i{
  font-size:18px;
  transition:0.3s ease;
}

.steps-btn a:hover i{
  transform:translateX(5px);
}

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

@media(max-width:991px){

  .steps-heading h2{
    font-size:34px;
  }

  .steps-wrapper{
    grid-template-columns:1fr;
  }

}

@media(max-width:768px){

  .steps-section{
    padding:75px 20px;
  }

  .steps-heading{
    margin-bottom:42px;
  }

  .steps-heading h2{
    font-size:28px;
    line-height:1.12;
  }

  .steps-heading p{
    font-size:13px;
  }

  .step-card{
    padding:26px 22px;

    border-radius:20px;
  }

  .step-number{
    width:52px;
    height:52px;

    font-size:17px;

    border-radius:16px;
  }

  .step-card h3{
    font-size:19px;
  }

  .step-card p{
    font-size:12.5px;
    line-height:1.75;
  }

  .steps-btn a{
    width:160px;
    height:48px;

    font-size:13px;

    border-radius:12px;
  }

}

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

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

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

  background:#ffffff;
}

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

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

  padding:7px 14px;

  background:#eef8ff;
  border-radius:50px;

  font-size:10px;
  font-weight:700;
  letter-spacing:1px;
  color:#3baee6;

  margin-bottom:18px;
}

.faq-left h2{
  font-size:39px;
  line-height:1.2;
  font-weight:800;
  color:#000;

  margin-bottom:18px;
}

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

  font-size:16px;
  line-height:1.8;
  color:#666;
}

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

/* ITEM */
.faq-item{
  background:#f6f8fb;
  border-radius:16px;

  padding:0 20px;

  transition:0.35s ease;

  overflow:hidden;

  border:1px solid transparent;
}

/* ACTIVE ITEM */
.faq-item.active{
  padding-top:18px;
  padding-bottom:18px;

  background:#1ea7e2;
  border-color:#1ea7e2;

  box-shadow:0 12px 30px rgba(30,167,226,0.18);
}

/* 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;

  transition:0.3s ease;
}

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

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

  transition:0.3s ease;
}

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

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

  background:#dcf2ff;
  border-radius:50%;

  transition:0.3s ease;
}

.faq-icon i{
  font-size:25px;
  color:#1ea7e2;

  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:#555;

  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:#1ea7e2;
}

/* 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{
  position:relative;

  width:100%;
  overflow:hidden;

  padding:95px 5%;

  background:
  radial-gradient(circle at top left, rgba(0,140,255,0.18), transparent 35%),
  radial-gradient(circle at bottom right, rgba(0,89,255,0.2), transparent 35%),
  linear-gradient(180deg,#02050c 0%, #040b1d 100%);
}

/* CONTAINER */
.cta-container{
  position:relative;
  z-index:5;

  max-width:700px;
  margin:auto;

  text-align:center;
}

/* TAG */
.cta-tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:8px 16px;

  border:1px solid rgba(255,255,255,0.12);
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(10px);

  border-radius:100px;

  font-size:10px;
  font-weight:700;
  letter-spacing:1.4px;
  color:#62c3ff;

  margin-bottom:18px;
}

/* TITLE */
.cta-container h2{
  font-size:48px;
  line-height:1.1;
  font-weight:800;
  color:#ffffff;

  margin-bottom:18px;
}

.cta-container h2 span{
  color:#46b6ff;
}

/* TEXT */
.cta-container p{
  max-width:580px;
  margin:auto;

  font-size:15px;
  line-height:1.8;
  color:rgba(255,255,255,0.72);

  margin-bottom:32px;
}

/* BUTTONS */
.cta-buttons{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}

/* BUTTON */
.cta-btn{
  height:52px;
  padding:0 28px;

  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  border-radius:12px;

  font-size:14px;
  font-weight:700;
  text-decoration:none;

  transition:0.35s ease;
}

/* PRIMARY */
.call-btn{
  background:#ffffff;
  color:#000000;

  box-shadow:0 10px 30px rgba(255,255,255,0.1);

  transition:0.35s ease;
}

.call-btn i{
  font-size:18px;

  transition:0.3s ease;
}

.call-btn:hover{
  background:#0a84ff;
  
  color:#ffffff;

  box-shadow:
  0 16px 35px rgba(10,132,255,0.22);
}

.cta-btn:hover i{
  transform:translateX(5px);
}

/* SECONDARY */
.secondary-btn{
  border:1px solid rgba(255,255,255,0.15);
  background:rgba(255,255,255,0.05);

  backdrop-filter:blur(10px);

  color:#ffffff;
}

.secondary-btn:hover{
  background:rgba(255,255,255,0.2);
}

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

/* SHAPE COMMON */
.cta-bg-shape{
  position:absolute;
  border-radius:50%;
  filter:blur(90px);
}

/* TOP LEFT GLOW */
.shape-1{
  width:360px;
  height:360px;

  background:rgba(0,140,255,0.24);

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

/* RIGHT SIDE GLOW */
.shape-2{
  width:300px;
  height:300px;

  background:rgba(0,89,255,0.18);

  bottom:-100px;
  right:-60px;
}

/* CENTER LINE GLOW */
.shape-3{
  width:60%;
  height:2px;

  background:#0a84ff;

  left:50%;
  bottom:55px;

  transform:translateX(-50%);

  box-shadow:
  0 0 24px #0a84ff,
  0 0 70px #0a84ff;
}

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

  position:absolute;
  inset:0;

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

  background-size:65px 65px;

  opacity:0.3;
}

/* BOTTOM FADE */
.cta-section::after{
  content:"";

  position:absolute;
  left:0;
  bottom:0;

  width:100%;
  height:140px;

  background:linear-gradient(to top,
  rgba(0,119,255,0.15),
  transparent);
}

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

@media(max-width:991px){

  .cta-container h2{
    font-size:44px;
  }

  .cta-container p{
    font-size:14px;
  }

}

@media(max-width:768px){

  .cta-section{
    padding:75px 20px;
  }

  .cta-container h2{
    font-size:34px;
  }

  .cta-container p{
    font-size:14px;
    line-height:1.7;
  }

  .cta-buttons{
    flex-direction:column;
  }

  .cta-btn{
    width:100%;
  }

  .shape-3{
    width:85%;
  }

}