/* Base */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji';
  color: #0e1a2a;
  background: #0a0f17;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}
.link {
    cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}

:root {
  --bg: #0a0f17;
  --card: #0f1724;
  --muted: #9cb3c9;
  --text: #ecf2fd;
  --primary: #1bb0ce;
  --primary-2: #22d3ee;
  --accent: #64f4ab;
}

.container {
  width: 85%;
  margin-inline: auto;
}


@media (min-width: 1800px) {
    .container{
        max-width: 1600px;
    }
}


.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.center {
  text-align: center;
}

.small {
  font-size: 14px;
  color: var(--muted);
}

.mt-16 {
  margin-top: 16px;
}

.spread {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.section {
  padding: 80px 0;
}

h1,
h2,
h3,
h4 {
  color: var(--text);
  margin: 8px 0 12px;
  line-height: 1.2;
}

p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 12px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: saturate(180%) blur(6px);
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.header-inner {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo img {
  height: 44px;
  width: auto;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, .2);
  color: var(--text);
  padding: 8px 10px;
  border-radius: 8px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: #CE8346;
  padding: 6px 8px;
  border-radius: 6px;
  transition: color .2s, background .2s;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background-color: #CE8346;
}

.nav-menu a:active::after,
.nav-menu a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: #081018;
  font-weight: 700;
  border: 0;
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .25);
  transition: transform .15s ease;
}

/* .btn:hover {
  transform: translateY(-1px);
} */

.btn-wa {
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 25px;
  font-size: 10px;
  padding: 8px 20px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.btn-wa i {
  font-size: 12px;
  margin-right: 8px;
}

/* Main Banner */
.main_banner{
    padding: 35px;
    background: #25262A;
}
.main_banner .wrapper{
    display: flex;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.main_banner .content{
    padding-top: 100px;
    width: 36.306%;
}

.main_banner .content > * {
    opacity: 0;
    transform: translateY(-20px);
    animation: contentDropIn .6s ease-out forwards;
}

.main_banner .content > *:nth-child(1) { animation-delay: .1s; }
.main_banner .content > *:nth-child(2) { animation-delay: .25s; }
.main_banner .content > *:nth-child(3) { animation-delay: .4s; }
.main_banner .content > *:nth-child(4) { animation-delay: .55s; }

@keyframes contentDropIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section.clients {
  background: #2d2e32;
  padding-top: 60px;
  padding-bottom: 60px;
}

.clients .intro {
  margin-bottom: 24px;
}

.clients .intro h2 {
  color: #fff;
  margin: 6px 0 6px;
}

.client-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.client-stat {
  background: #25262A;
  padding: 105px 0px 70px 0px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.client-stat:last-child {
  border-right: 0;
}

.client-stat .stat-number {
  font-size: 69px;
  font-weight: 600;
  color: #FECD1A;
  margin-bottom: 6px;
}

.client-stat .client-label {
  color: #CE8346;
  font-size: 14px;
}

@media (max-width: 768px) {
    .main_banner .wrapper{
        flex-direction: column;
    }

    .main_banner .content{
        padding-top: 0;
        width:100%
    }

    .main_banner .images{
        width: 100% !important;
        margin-top: 20px;
    }
}

@media(max-width: 600px) {
    .main_banner{
        padding: 0px;
    }
}

/* How To Join */
.section.how {
  background: #25262A;
}

.how-left h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.how-right {
  display: flex;
  align-items: center;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 40px;
}

.feature {
  background: #25262A;
  border-radius: 14px;
  text-align: center;
  padding: 26px 16px 20px;
}

.feature img {
  margin: 0 auto 10px;

  width: 100px;
  height: auto;
    min-height: 150px;
  object-fit: contain;
}

.feature p {
  color: #ecf2fd;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .client-stats { grid-template-columns: repeat(2, 1fr); }
  .client-stat:nth-child(2n) { border-right: 0; }
  .client-stat { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .client-stat:nth-last-child(-n+2) { border-bottom: 0; }
}

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

@media (max-width: 640px) {
  .client-stats { grid-template-columns: 1fr; }
  .client-stat { border-right: 0; }
  .client-stat { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .client-stat:last-child { border-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .main_banner .content > * {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

h6 {
    color: #CE8346;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.1em;
    position: relative;
    padding-left: 20px;
}

 h6::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 15px;
    height: 2px;
    border-radius: 2px;
    background: #CE8346;
}

.main_banner .content h1 {
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    max-width: 100%;
}

.main_banner .content .content_btn{
    display: inline-block;
    margin-top: 20px;
}

.content_btn{
    padding: 10px 20px;
    text-align: center;
    background: #CE8346;
    border-radius: 12px;
    color: #fff;
}

.content_btn:hover {
    background: linear-gradient(91deg, #FFAF29 0%, #FECD1A 100%);
    color: #000;
    transition: .3s ease;
}

.main_banner .images {
    width: 64%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.main_banner .images .app_img{
    display: block;
    width: 100%;
    max-width: 540px;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    animation: appImgEnter .8s ease-out .2s forwards;
}

.main_banner .images .round_img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 800px;
    z-index: 1;
    transform-origin: center center;
    opacity: 0;
    animation: roundImgEnter 1s ease-out .4s forwards;
}

/* Main banner image entrance animations */
@keyframes appImgEnter {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes roundImgEnter {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .main_banner .images .app_img,
  .main_banner .images .round_img {
    animation: none !important;
    opacity: 1 !important;
    transform: none;
  }
  .main_banner .images .round_img {
    transform: translate(-50%, -50%) !important;
  }
}

.section.faq {
    background: rgb(45, 46, 50);
}
/* FAQ */

/* Accordion – redesigned */
.accordion .item {
  background: transparent;
  border: 0;
  margin-bottom: 14px;
}

.accordion .head {
  width: 100%;
  text-align: left;
  background: #CE8346;
  color: #1b1b1b;
  font-weight: 600;
  border: 0;
  padding: 14px 48px 14px 18px;
  cursor: pointer;
  border-radius: 28px;
  position: relative;
}

/* right circular chevron */
.accordion .head::before {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0,0,0,.2);
  transform: translateY(-50%);
}

.accordion .head::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-60%) rotate(-45deg);
  transition: transform .2s ease;
}

.accordion .item.open .head::after {
  transform: translateY(-40%) rotate(135deg);
}

.accordion .panel {
  display: none;
  color: var(--muted);
  background: rgb(45, 46, 50);
  padding: 14px 18px;
  margin: 10px 22px 0;
  border-left:1px solid #CE8346;
  border-right: 1px solid #CE8346;
}

/* Payments */
.payments{
    background: rgb(45, 46, 50);;
}
.payments img {
    display: block;
    margin: 0 auto;
  opacity: .95;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .35));
}
.payments h6{
    margin: 0;
}

/* Article */
.section.article {
  background: #000;
  padding-block: 40px;
  color: #a6adb7;
}

.section.article h1, .section.article h2, .section.article h3, .section.article h4, .section.article h5, .section.article h6 {
  color: #fff;
  margin-bottom: 10px;
}

.section.article p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.section.article ul, .section.article ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.section.article li {
  margin-bottom: 10px;
}

.section.article table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 20px;
}

.section.article th, .section.article td {
  border: 1px solid #333;
  padding: 10px;
  text-align: left;
}

.section.article th {
  background: #333;
  color: #fff;
}

/* Footer */
.site-footer {
  background: #0b121a;
  padding-block: 40px;
  color: #a6adb7;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.site-footer .grid-4 {
  padding: 52px 0;
}

.site-footer h4 {
  margin-bottom: 10px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.badges {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Footer enhancements */
.site-footer .social-icons {
  display: flex;
  gap: 12px;
}

.site-footer .social-icons .icon {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  color: #CE8346;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.site-footer .social-icons .icon:hover {
  background: rgba(255,255,255,.06);
  color: #FFD27A;
  border-color: rgba(255,255,255,.35);
}

.site-footer .social-icons svg {
  width: 18px;
  height: 18px;
}

.site-footer .social-icons i {
  font-size: 18px;
  line-height: 1;
}

.site-footer .foot-col ul a {
  color: var(--muted);
}

.site-footer .foot-col ul a:hover {
  color: var(--text);
}

/* right badges column vertical */
.site-footer .foot-col .badges {
  flex-direction: column;
  align-items: flex-end;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 14px 0;
  color: var(--muted);
}

.copyright a {
  color: var(--text);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .7);
  display: grid;
  place-items: center;
  z-index: 40;
}

.lightbox img {
  max-width: min(1000px, 92vw);
  max-height: 84vh;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .6);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, .6);
  color: #fff;
  border: 0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 22px;
  cursor: pointer;
}

/* Reveal on scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .5s ease, transform .5s ease;
}

[data-reveal].visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .header-inner {
    gap: 8px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    right: 4%;
    top: 64px;
    flex-direction: column;
    background: #0f1724;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .08);
    display: none;
  }

  .nav-menu.open {
    display: flex;
  }
}

@media (max-width: 768px) {
  .site-header {
    background: #000;
  }

  /* Whatsapp button as green circle with icon only */
  .btn-wa {
    display: none;
  }
  /* Hamburger / Close toggle */
  .nav-toggle {
    width: 42px;
    height: 32px;
    border: 0;
    color: #FFD23F; /* yellow */
    font-size: 0;
    position: relative;
      transform: translateY(-8px);
  }
  .nav-toggle::before {
    content: "\2630"; /* ≡ */
    font-size: 39px;
    line-height: 1;
  }
  .nav-toggle[aria-expanded="true"]::before {
    content: "\2715"; /* ✕ */
    font-size: 22px;
  }

  /* Dropdown menu */
  .nav-menu {
    left: 0;
    right: 0;
    top: 60px;
    width: 100vw;
    margin: 0;
    border-radius: 0;
    border: 0;
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(0,0,0,.25);
  }
  .nav-menu li { width: 100%; }
  .nav-menu a {
    display: block;
    color: #2b2f35;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 16px 12px;
    text-align: center;
  }

  /* Active top bar look */
  .nav-menu a.active {
    background: #383d44;
    color: #FFCF40;
  }
}

@media screen and (max-width: 600px) {
    table.table-wrap {
        border: 0;
    }

    table.table-wrap tr.title {
        display: none;
    }

    table.table-wrap td.colored {
        background-color: #FFCF40;
    }

    table.table-wrap td.colored p {
        color: #fff;
    }

    table.table-wrap thead {
        display: none;
    }

    table.table-wrap tr {
        margin-bottom: 10px;
        display: block;
        border-bottom: 2px solid #ddd;
        border-right: 1px solid #FFAF29;
    }

    table.table-wrap td {
        display: block;
        text-align: right;
        font-size: 13px;
        border-bottom: 1px dotted #ccc;
        border-right: 1px solid transparent;
    }

    table.table-wrap td:last-child {
        border-bottom: 0;
    }

    table.table-wrap td:before {
        content: attr(data-label);
        float: left;
        text-transform: uppercase;
        font-weight: bold;
    }
}
