@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");

:root {
  /* Color */
  --primary-color: #272170;
  --primary-color2: #130c43;
  --primary-color3: #1d233e;
  --white: #ffffff;
  --text-color: #a7adbe;
  --text-color2:#DBDBDB;
  --border-color: #39299f;
  --card-border: #4735be;
  --dark-text: #000000;
  --yellow: #e8b23a;
  --off-white:#D4D2E4;

  /* Gradients */
  --text-gradient: linear-gradient(157.52deg, #ffa800 -8.55%, #f6e66f 89.13%);
  --text-gradient2: linear-gradient(90deg, #8d7cff 17.31%, #c99a31 100%);
  --yellow-gradient: linear-gradient(180deg, #e8b23a 9.3%, #bf922e 100%);
  --blue-gradient: linear-gradient(142.13deg, #1e1958 1.8%, #2b2380 99.75%);
  --dark-yellow-gradient: linear-gradient(
    270deg,
    rgba(2, 5, 34, 0) 3.06%,
    rgba(232, 178, 58, 0.8) 56.66%,
    rgba(3, 4, 33, 0) 101.73%
  );
  --btn-gradient: linear-gradient(180deg, #e8b23a 9.3%, #bf922e 100%);
  --bg-gradient: linear-gradient(105.17deg, #282271 8.41%, #140b3c 95.92%);

  /* Font family */
  --font-primary: "Urbanist", sans-serif;
  --font-secondary: "DM Sans", sans-serif;

  /* Font Sizes */
  --fs-73: clamp(42px, 5vw, 73px);
  --fs-64: clamp(38px, 4.5vw, 64px);
  --fs-52: clamp(34px, 4vw, 52px);
  --fs-50: clamp(32px, 3.8vw, 50px);
  --fs-48: clamp(30px, 3.6vw, 48px);
  --fs-46: clamp(28px, 3.5vw, 46px);
  --fs-42: clamp(26px, 3.2vw, 42px);
  --fs-32: clamp(22px, 2.5vw, 32px);
  --fs-28: clamp(20px, 2.2vw, 28px);
  --fs-26: clamp(19px, 2vw, 26px);
  --fs-24: clamp(18px, 1.9vw, 24px);
  --fs-22: clamp(17px, 1.8vw, 22px);
  --fs-20: clamp(16px, 1.6vw, 20px);
  --fs-18: clamp(15px, 1.5vw, 18px);
  --fs-16: clamp(14px, 1.3vw, 16px);
  --fs-14: clamp(12px, 1.1vw, 14px);

  /* Font Weights */
  --fw-800: 800;
  --fw-700: 700;
  --fw-600: 600;
  --fw-500: 500;
  --fw-400: 400;
  --fw-300: 300;

  /* Line Heights */
  --lh-100: 1;
  --lh-30: clamp(24px, 2vw, 30px);
  --lh-26: clamp(22px, 1.8vw, 26px);
  --lh-24: clamp(20px, 1.6vw, 24px);
  --lh-23: clamp(19px, 1.5vw, 23px);
}
/* Font Size */
.fs73 {
  font-size: var(--fs-73);
}
.fs64 {
  font-size: var(--fs-64);
}
.fs52 {
  font-size: var(--fs-52);
}
.fs50 {
  font-size: var(--fs-50);
}
.fs48 {
  font-size: var(--fs-48);
}
.fs46 {
  font-size: var(--fs-46);
}
.fs42 {
  font-size: var(--fs-42);
}
.fs32 {
  font-size: var(--fs-32);
}
.fs28 {
  font-size: var(--fs-28);
}
.fs26 {
  font-size: var(--fs-26);
}
.fs24 {
  font-size: var(--fs-24);
}
.fs22 {
  font-size: var(--fs-22);
}
.fs20 {
  font-size: var(--fs-20);
}
.fs18 {
  font-size: var(--fs-18);
}
.fs16 {
  font-size: var(--fs-16);
}
.fs14 {
  font-size: var(--fs-14);
}

/* Font Weight */
.fw800 {
  font-weight: var(--fw-800);
}
.fw700 {
  font-weight: var(--fw-700);
}
.fw600 {
  font-weight: var(--fw-600);
}
.fw500 {
  font-weight: var(--fw-500);
}
.fw400 {
  font-weight: var(--fw-400);
}
.fw300 {
  font-weight: var(--fw-300);
}

/* Line Height */
.lh100 {
  line-height: var(--lh-100);
}
.lh30 {
  line-height: var(--lh-30);
}
.lh26 {
  line-height: var(--lh-26);
}
.lh24 {
  line-height: var(--lh-24);
}
.lh23 {
  line-height: var(--lh-23);
}

body {
  font-family: var(--font-primary);
  font-size: var(--fs-20);
  line-height: var(--lh-26);
  font-weight: var(--fw-400);
  color: var(--white);
}
.card-border {
  border: 1.5px solid var(--card-border);
}
section {
  position: relative;
  z-index: 1;
}
img {
  max-width: 100%;
  height: auto;
}
.p-font {
  font-family: var(--font-primary);
}
.s-font {
  font-family: var(--font-secondary);
}
/* Typography */
.container-fluid {
  padding-inline: clamp(20px, 8vw, 150px);
}
.hidden {
  overflow: hidden;
}
.radius23 {
  border-radius: clamp(16px, 2vw, 23px);
}
.bg {
  background: var(--bg-gradient) !important;
}
.bg2 {
  background: var(--primary-color2) !important;
}
.border {
  border: 1px solid var(--border-color) !important;
}
.border-dark {
  border-color: var(--dark-text) !important;
}
.r20 {
  border-radius: 20px;
}
/* Padding */
.py80 {
  padding-top: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(40px, 6vw, 80px);
}

.py40 {
  padding-top: clamp(20px, 4vw, 40px);
  padding-bottom: clamp(20px, 4vw, 40px);
}
.pt80 {
  padding-top: clamp(40px, 6vw, 80px);
}

.pt40 {
  padding-top: clamp(20px, 4vw, 40px);
}

.pb80 {
  padding-bottom: clamp(40px, 6vw, 80px);
}

.pb40 {
  padding-bottom: clamp(20px, 4vw, 40px);
}
.fill-btn,
.outlined-btn,
.outlined-white,.outlined-y {
  padding: 10px 30px;
  border-radius: 200px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fill-btn {
  background: var(--btn-gradient);
  padding: 10px 20px;
  color: var(--dark-text);
  border-radius: 200px;
}
.outlined-btn {
  border: 1px solid var(--yellow);
  color: var(--yellow);
}
.outlined-white {
  border: 1px solid var(--white);
  color: var(--white);
}
.outlined-y{
  border: 1px solid var(--yellow);
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
}
a {
  text-decoration: none;
}
.text-color {
  color: var(--text-color);
}
.text-color2 {
  color: var(--text-color2);
}
.off-white{
  color: var(--off-white);
}
.text-gradient {
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-gradient2 {
  background: var(--text-gradient2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.w-60{
  width: 60%;
}
.mw-60{
  max-width: 60%;
}
.w-40{
  width: 40%;
}
.white {
  color: var(--white);
}
.yellow {
  color: var(--yellow);
}
.flex {
  display: flex;
}
.items-center {
  align-items: center;
}
.items-start {
  align-items: start;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.mw60 {
  max-width: 60%;
  width: 100%;
}
.full-screen {
  min-height: 100vh;
}
.capitalize {
  text-transform: capitalize;
}
.uppercase{
  text-transform: uppercase;

}
/* Header */
/* DEFAULT = DESKTOP */
.menus {
    display: flex;
    align-items: center;
    gap: 20px;
}

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

    .menus {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100%;
        background: #0f172a;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        transition: right 0.4s ease;
        z-index: 9999;
    }

    .menus.active {
        right: 0;
    }

    .menus li {
        width: 100%;
        margin-bottom: 15px;
    }

    .menus a {
        color: #fff;
        width: 100%;
        display: block;
    }
}

/* OVERLAY */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 9998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}
button#openMenu {
    background: #272170;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid var(--yellow);
}
/* CLOSE BUTTON */
.close-btn {
    font-size: 28px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}


header .header-wrapper {
  background-color: var(--primary-color);
  border-radius: 0 0 60px 60px;
  border-bottom: 3px solid var(--yellow);
}
.hero-section.full-screen {
  min-height: calc(100vh - 106px) !important;
}
/* Hero section */
.hero-section::before {
  background-image: url(../images/hero-vectors.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  pointer-events: none;
  mix-blend-mode: Luminosity;
  opacity: 0.5;
}
.badges {
  background: #ffffff1a;
  box-shadow: 0px 1px 1px 0px #0003124d;
  box-shadow: 0px 8px 10.9px 0px #0003121f;
  border-top: 1px solid #ffffff1a;
  padding: 8px;
  border-radius: 50px;
}
.search-bty-category {
  background: linear-gradient(
    142.13deg,
    rgba(254, 248, 255, 0.063) 1.8%,
    rgba(254, 248, 255, 0) 99.75%
  );
  box-shadow: -6.99px -6.99px 19.07px 0px #ffffff26 inset;
  width: 100%;
  max-width: 45%;
  margin: auto;
  border-radius: 50px;
  padding-right: 5px;
}
.partner-card {
  padding: 20px;
}
.select-wrap {
  position: relative;
  width: 180px;
  user-select: none;
}
.select-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 50px;
  border: none;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
  transition: filter 0.15s;
  height: 60px;
  border: 1.2px solid #ffffff;
}
.select-btn:hover {
  filter: brightness(1.1);
}
.select-btn .left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  z-index: 10;
}
.dropdown.show {
  display: block;
}

.option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 14px;
  color: var(--dark-text);
}
.option:hover,
.option.active {
  background: #f5f5f5;
}

.result {
  margin-top: 12px;
  font-size: 13px;
  color: #555;
}
.result b {
  color: #111;
}
.search-bty-category .fill-btn {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0;
  justify-content: center;
}
input.category-search {
  background-color: transparent;
  border: 0;
  color: var(--text-color) !important;
  font-size: var(--fs-18);
}
input.category-search::placeholder {
  color: var(--text-color);
  font-size: var(--fs-18);
}
input.category-search:focus {
  background-color: transparent;
  box-shadow: none;
}
.partners-track {
  display: flex;
  width: max-content;
  animation: marquee 20s linear infinite;
  gap: 20px;
}

.partners-track:hover {
  animation-play-state: paused;
}

.partner-card {
  flex: 0 0 auto;
  width: 160px;
  padding: 6px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--yellow);
  border-radius: 10px;
}

.partner-card img {
  max-width: 100%;
  height: auto;
  /* filter: grayscale(100%); */
  transition:
    opacity 0.3s ease,
    filter 0.3s ease;
}

.partner-card img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.nav.nav-pills .nav-link {
  background: #2c257d;
  border: 1.07px solid #39299f;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  padding: 0;
  font-size: var(--fs-22);
  font-weight: var(--fw-600);
}
.nav.nav-pills .nav-link > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 95%;
  border-radius: 0;
  padding: 18px 10px;
  background: #140d45;
  color: var(--white);
}
.nav.nav-pills .nav-item {
  height: 83px;
}
.nav.nav-pills .nav-link > div .icon-block {
  border-right: 2px solid #53488e;
  padding-right: 10px;
}
.nav.nav-pills .nav-link.active {
  background: #ffb0004a;
  border: 1px solid #e8b23a;
}
.arrow-right {
  width: 32px;
  height: 32px;
  border: 1px solid var(--white);
  border-radius: 50%;
  font-size: var(--fs-20);
  color: var(--white);
}
.nav.nav-pills .nav-link.active .arrow-right {
  border-color: var(--primary-color3);
}
.nav-link .icon-block img.active {
  display: none;
}
.nav-link .icon-block img {
  width: 48px;
  height: 48px;
}
.nav-link.active .icon-block img.inactive {
  display: none;
}
.nav-link.active .icon-block img.active {
  display: block;
}
.nav-pills .nav-link.active > div {
  background: var(--btn-gradient);
}
.nav-pills .nav-link.active * {
  color: var(--primary-color3);
}
.banner-card {
  background: linear-gradient(180deg, #2b2480 0%, #1e1958 100%);
  border: 1.07px solid #39299f;
  padding: 30px;
  border-radius: 23px;
  position: relative;
}
.banner-card::after,
.banner-card::before {
  background: linear-gradient(
    90deg,
    rgba(232, 178, 58, 0) 3.01%,
    #e8b23a 49.84%,
    rgba(232, 178, 58, 0) 94.9%
  );
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin: auto;
  height: 1px;
  position: absolute;
  content: "";
}
.banner-card::before {
  top: 0;
  bottom: auto;
}

/* gradient border */
.glow-line {
  position: relative;
}

.glow-line::after,
.glow-line::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  margin: auto;
  height: 1px;

  background: linear-gradient(
    90deg,
    rgba(232, 178, 58, 0) 3.01%,
    #e8b23a 49.84%,
    rgba(232, 178, 58, 0) 94.9%
  );
}

/* Bottom line */
.glow-line::after {
  bottom: 0;
}

/* Top line */
.glow-line::before {
  top: 0;
}
.engagement {
  background: #120a46;
  padding: 12px 15px;
  width: 100%;
}
.brand-growth::before {
  background: url(../images/growth-bg-line.webp) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.status{
    width: 10px;
    height: 10px;
    background: #01AA15;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    bottom: -1px;
    right: -1px;
}
.insight-card {
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, #2d2a7b, #1c1a5a);
  color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.section-title {
  text-align: center;
  padding: 10px;
  border-radius: 25px;
}

.profile-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border-radius: 15px;
}
.user-profile i {
  color: var(--yellow);
  position: absolute;
  bottom: -11px;
  right: -2px;
}

.profile-img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}
.badge-box {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.badge-pill {
  padding: 7px 12px;
}

.analytics-row {
  display: flex;
  gap: 15px;
}

.analytics-item {
  flex: 1;
  padding: 15px;
  text-align: center;
}
.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 5px;
}

.custom-progress {
  height: 6px;
  border-radius: 10px;
  background:#3B28B9;
  overflow: hidden;
  margin-bottom: 12px;
}

.custom-bar {
  height: 100%;
  border-radius: 10px;
}

.green {
  background: #00d084;
  width: 82%;
}
.blue {
  background: #3b82f6;
  width: 9%;
}
.orange {
  background: #f59e0b;
  width: 3%;
}

.section-heading {
  margin: 0px 0 10px;
  font-weight: 500;
}

/* stats */
.stats {
  background: linear-gradient(180deg, #251e6e 9.3%, #1a1659 42.88%);
}
.stats-card {
  background: linear-gradient(142.13deg, #1e1958 1.8%, #2b2380 99.75%);
  padding: clamp(20px, 5vw, 40px) clamp(10px, 3vw, 15px);
  height: 100%;
}
.recent-campaign {
  background: #1b1350;
}
.recent-campaign::before {
  background: url(../images/campaign-bg.webp) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.campaign-card ul li {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 30px;
  text-align: left;
  position: relative;
  padding-top: 26px;
}
.campaign-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    270deg,
    rgba(2, 5, 34, 0) 3.06%,
    rgba(232, 178, 58, 0.8) 56.66%,
    rgba(3, 4, 33, 0) 101.73%
  );
}
.campaign-card {
  background: #140d45a8;
  border: 1.07px solid #39299f;
  padding: clamp(20px, 5vw, 40px) clamp(12px, 3vw, 20px);
  height: 100%;
}
.campaign-card ul {
  position: relative;
  z-index: 1;
}
.campaign-card ul::after {
  background: #634400;
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  top: 0;
  left: 0;
  filter: blur(94px);
  z-index: -1;
}
.steps-badge {
  border-bottom: 2px solid #e8b23a;
  box-shadow: 0px 4px 4px 0px #00000040;
  padding: 20px 10px;
  border-radius: 50px;
  width: max-content;
}
.section-shadow {
  box-shadow: 0px 0px 19.3px 0px #c4c4c459;
}
.steps {
  overflow: hidden;
  position: sticky !important;
  top: 0px;
  z-index: 100;
}
.steps:nth-child(2){
z-index: 101;
top: 30px;
}
.steps:nth-child(3){
z-index: 102;
top: 60px;
}
.steps:nth-child(4){
z-index: 103;
top: 90px;
}

/* .step1,
.step2,
.step3,
.step4 {
  z-index: 10;
} */
.step1::before,
.step2::before,
.step3::before,
.step4::before {
  background-repeat: no-repeat;
  background-size: 100% 100%;
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  pointer-events: none;
}
.step1::before {
  background-image: url(../images/step1-waves.webp);
}
.step2::before {
  background-image: url(../images/step2-waves.webp);
}
.step3::before {
  background-image: url(../images/step3-waves.webp);
}
.step4::before {
  background-image: url(../images/step4-waves.webp);
}

.case-card {
  border-radius: 23px;
  background: linear-gradient(180deg, rgba(19, 12, 67, 0.7) 0%, #130c43 100%);
  border: 2.3px solid #2e38a2d9;
  padding: 20px;
}

.case-title {
  font-size: 18px;
  font-weight: 600;
}
.case-chart {
  position: absolute;
  top: -20px;
  right: -20px;
}
.case-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat-item {
  background: url(../images/stats-bg.svg) no-repeat;
  background-size: cover;
  padding: 16px 20px;
  border-radius: 30px;
}
.stat-item > div {
  background: linear-gradient(
    142.13deg,
    rgba(254, 248, 255, 0.063) 1.8%,
    rgba(254, 248, 255, 0) 99.75%
  );
}
.stat-value {
  font-weight: 600;
}

.stat-label {
  color: #b3b0d0;
}
.case-footer .bi-arrow-up-short::before {
  transform: rotate(45deg);
  font-size: var(--fs-18);
}

.case-studies::after {
  background: url(../images/case-study-bg.webp) no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  z-index: -1;
  opacity: 0.7;
}
.leading-brands {
  background: #1c0d7b;
  z-index: 1;
}
.leading-brands::after {
  background: url(../images/leading-brand-bg.webp) no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  z-index: -1;
  opacity: 0.7;
}
.testimonial-card {
  background: linear-gradient(180deg, rgba(19, 12, 67, 0.7) 0%, #130c43 100%);
  border: 2.3px solid #2e38a2d9;
  border-radius: 24px;
  padding: 40px 80px;
  color: #fff;
  position: relative;
}

.quote-icon {
  font-size: 40px;
  color: #f4c542;
  margin-bottom: 10px;
}

.user-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #f4c542;
  margin: 0 auto;
}

.user-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-btn {
  background: transparent;
  border: none;
  color: #cfcdf5;
  font-size: 20px;
  cursor: pointer;
}
.creator-app-block {
  background: #140d45a8;
  border: 1px solid #39299f;
  padding: 60px;
  border-radius: 23px;
  border-left: 0;
  border-right: 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.creator-app-block::before {
  background: url(../images/creator-bg.webp) no-repeat;
  background-size: 100% 100%;
  content: "";
  width: 100%;
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.creator-app-block .inner-wrapper {
  max-width: 60%;
  margin: auto;
  text-align: center;
}
.qrcode {
  background: linear-gradient(
    180deg,
    #4b5aff -3.43%,
    #070c27 5.09%,
    rgba(8, 12, 39, 0) 89.68%,
    #00b3ff 106.11%
  );
  border-radius: 27px;
  padding: 1px;
  box-shadow: 0px 0px 24.4px 0px #ffffff40;
}
.qrwrapper {
  background: linear-gradient(180deg, rgba(0, 4, 31, 0) 0%, #00041f 100%);
  padding: 30px;
  border-radius: 27px;
}
.accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}

/* ── Each item ── */
.acc-item {
  background: linear-gradient(90deg, #3d2bc6 0%, #1e1560 100%);
  border: 1.07px solid #39299f;
  border-radius: 16px;
  overflow: hidden;
  transition: background 0.3s;
}

.acc-item.open {
  background: linear-gradient(
    90deg,
    rgba(20, 13, 69, 0.2739) 0%,
    rgba(51, 33, 171, 0.2772) 100%
  );
  border: 1.07px solid #39299f;
}

/* ── Header row ── */
.acc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
  user-select: none;
}

.acc-question {
  flex: 1;
}

/* ── Toggle button ── */
.acc-toggle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition:
    background 0.25s,
    border-color 0.25s;
  position: relative;
  color: var(--white);
}
/* 
.acc-item.first .acc-toggle {
  background: #f5c842;
  border-color: #f5c842;
} */

.acc-toggle .icon-bar {
  position: absolute;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease;
}

/* horizontal bar */
.acc-toggle .h-bar {
  width: 16px;
  height: 2px;
}

/* vertical bar */
.acc-toggle .v-bar {
  width: 2px;
  height: 16px;
}

/* When item is first (yellow btn) — icons are dark */
.acc-item.first .acc-toggle .icon-bar {
  background: #1a1560;
}

/* Open state: rotate vertical bar to make minus */
.acc-item.open .acc-toggle .v-bar {
  transform: rotate(90deg);
  opacity: 0;
}

/* ── Body ── */
.acc-body {
  overflow: hidden;
  height: 0;
  transition: height 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: height;
}

.acc-body-inner {
  padding: 0 24px 22px;
}

.acc-answer {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 0;
}

/* bullet list inside answer */
.acc-list {
  margin-top: 14px;
  padding-left: 4px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
}

.acc-list li {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  gap: 8px;
}

.acc-list li::before {
  content: "•";
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
}

.blog-section {
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.blog-title {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-subtitle {
  color: #b3b0d9;
  font-size: 15px;
  margin-bottom: 50px;
}

/* GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* CARD */
.blog-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(21, 16, 77, 0.9);
  border: 1px solid rgba(100, 90, 255, 0.4);
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
  position: relative;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: #7a6cff;
  box-shadow: 0 0 25px rgba(122, 108, 255, 0.2);
}

/* IMAGE */
.blog-img{
  flex-shrink: 0;
}
.blog-img img {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  object-fit: cover;
  flex-shrink: 0;
}

/* CONTENT */
.blog-content {
  text-align: left;
}

.blog-content h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 6px;
}

.blog-content span {
  font-size: 13px;
  color: #a7a4d6;
}

/* OUTER BORDER BOX (like design) */
.blog-wrapper {
  border: 1px solid rgba(100, 90, 255, 0.3);
  background: linear-gradient(180deg, rgba(19, 12, 67, 0.7) 0%, #130c43 100%);
  border-radius: 22px;
  padding: 30px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.faq::before {
  background: url(../images/faq.bg.webp) no-repeat;
  background-size: 100% 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.blog-section::before {
  background: url(../images/blog-bg.webp) no-repeat;
  background-size: 100% 100%;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.7;
}
.footer-wrapper {
  border-top: 2.3px solid var(--yello, #e8b23a);
  border-radius: 70px 70px 0 0;
}

/* Office Cards */
.office-box {
  border: 1.07px solid #39299f;
  border-radius: 12px;
  padding: 10px 20px;
  margin-top: 20px;
  background: #140d4578;
}
.office-box p {
  display: flex;
  align-items: start;
  gap: 10px;
}
.office-box p {
  margin: 5px 0;
  font-size: 14px;
  line-height: normal;
}

/* Links */
.footer h6 {
  font-weight: 600;
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul li a {
  color: #fff;
  text-decoration: none;
  font-size: var(--fs-20);
  transition: 0.3s;
}

.footer ul li a:hover {
  color: #fff;
}
.footer hr{
  border-top: 1px solid #71777D;
  opacity: 1;
  margin: 30px 0;
}
/* QR Box */
.qr-box {
  padding: clamp(12px, 3vw, 20px);
  border-radius: 10px;
  display: inline-block;
}

/* App buttons */
.store-btn img {
  width: 140px;
  margin-top: 10px;
}

/* Bottom Bar */
.footer-bottom {
  padding: 0px 0 30px;
  font-size: 14px;
}

.footer-bottom a {
  color: #fff;
  margin-right: 15px;
  text-decoration: none;
  font-size: 14px;
}

/* Social Icons */
.social-icons a {
  width: 35px;
  height: 35px;
  background: #111731;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2.67px solid #ffffff54;
  border-radius: 50%;
  margin-left: 10px;
  color: #fff;
  transition: 0.3s;
  font-size: var(--fs-18);
}

.social-icons a:hover {
  background: #fff;
  color: #000;
}
.campaign-wrapper{
  position: relative;
  padding: 40px;
  z-index: 100;
}
.campaign-wrapper::after,.campaign-wrapper::before{
  width: 100%;
  height: 75%;
  content: "";
  border-radius: 27px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  opacity: .5;
  pointer-events: none;
}
.campaign-wrapper::before{
  background: linear-gradient(180deg, #4B5AFF -3.43%, #070C27 5.09%, rgba(8, 12, 39, 0) 89.68%, #00B3FF 106.11%);
  padding: 2px;
}
.campaign-wrapper::after{
  background: linear-gradient(180deg, rgb(0 4 31 / 82%) 0%, #110A3F 100%);
    z-index: -1;
    top: 2px;
    height: 74.3%;
    opacity: 1;
}
.campaign-features{
background: linear-gradient(134.47deg, #E8B23A 20.32%, #070C27 25.32%, rgba(8, 12, 39, 0) 75.01%, #E8B23A 84.66%);
padding: 2px;
border-radius: 27px;
position: relative;
overflow: hidden;
}
.campaign-features::before,.campaign-features::after{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 50%;
  border-radius: 50%;
  pointer-events: none;
}
.campaign-features::before{
  background: #1F01CA;
  filter: blur(110px)
}
.campaign-features::after{
  background: #B80A98;
  filter: blur(110px);
  bottom: 0;
  right: 0;
  left: auto;
  top: 0;
  margin: auto;
}
.feature-inner{
  background: linear-gradient(180deg, rgba(0, 4, 31, 1) 0%, #0D0738 100%);
  padding: 30px;
  border-radius: 27px;
}
.separator{
  background: linear-gradient(270deg, rgba(2, 5, 34, 0) 3.06%, #B900F6 56.66%, rgba(3, 4, 33, 0) 101.73%);
  width: 100%;
  height: 2px;
}
