*{margin:0;padding:0;box-sizing:border-box}
body{
  font-family:Inter,Arial,sans-serif;
  background:#0e0e11;
  color:#f5f5f5;
  overflow-x:hidden;
}

:root{
  --bg:#0e0e11;
  --bg2:#14141a;
  --card:#1b1b23;
  --border:#2a2a35;
  --red:#e10600;
  --red2:#ff2a2a;
  --text2:#b5b5c3;
}

.container{max-width:1100px;margin:auto;padding:0 16px}
section{padding:80px 0}
h1{font-size:48px}
h2{font-size:34px}
p{color:var(--text2)}


header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 82px;
  background: rgba(10,10,12,0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #1f1f26;
  z-index: 1000;
}

.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== LOGO ===== */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 46px;                 /* PERSIS STOCKWISE */
  width: auto;
}

.logo span {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #ffffff;
}

/* ===== MENU ===== */
.menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.menu a {
  font-size: 14.5px;
  font-weight: 500;
  color: #d6d6e1;
  transition: color .25s ease, opacity .25s ease;
  text-decoration: none;
}

.menu a:hover {
  color: #ffffff;
  opacity: 1;
}




/* ===== JOIN NOW BUTTON ===== */
.btn-nav {
  margin-left: 10px;
  background: red;
  color: #fff;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  transition: background .25s ease, transform .15s ease;
}

.btn-nav:hover {
  background: red;
  transform: translateY(-1px);
}

/* ===== MOBILE ===== */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #fff;
}

@media (max-width: 900px) {
  .menu {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    width: 100%;
    background: #0e0e13;
    flex-direction: column;
    padding: 24px 0;
    border-top: 1px solid #1f1f26;
  }

  .menu.active {
    display: flex;
  }

  .menu a {
    padding: 12px 0;
    font-size: 15px;
  }

  .btn-nav {
    width: 90%;
    text-align: center;
    margin-top: 10px;
  }

  .menu-toggle {
    display: block;
  }
}

.btn{
  background:linear-gradient(135deg,var(--red),var(--red2));
  border:none;
  color:#fff;
  padding:12px 28px;
  border-radius:10px;
  font-weight:600;
  box-shadow:0 10px 30px rgba(225,6,0,.35);
}

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  text-align:center;
  background:
    radial-gradient(circle at top,rgba(225,6,0,.25),transparent 60%),
    var(--bg);
}

.hero p{max-width:600px;margin:0 auto 30px}

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:22px;
  margin-top:40px;
}

.card{
  background:linear-gradient(180deg,var(--card),var(--bg2));
  border:1px solid var(--border);
  padding:28px;
  border-radius:18px;
  transition:.3s;
}

.card:hover{
  transform:translateY(-6px);
  border-color:var(--red);
}

.stats{
  background:#0b0b0f;
  display:flex;
  justify-content:space-around;
  text-align:center;
}

.stat h3{
  font-size:40px;
  color:var(--red);
  animation:pulse 2s infinite;
}

@keyframes pulse{
  0%{text-shadow:0 0 0 rgba(225,6,0,.4)}
  50%{text-shadow:0 0 20px rgba(225,6,0,.9)}
  100%{text-shadow:0 0 0 rgba(225,6,0,.4)}
}

.slider{
  display:flex;
  gap:18px;
  overflow-x:auto;
}

.testi{
  min-width:260px;
  background:var(--card);
  padding:22px;
  border-radius:14px;
  border:1px solid var(--border);
}

.pricing-cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:22px;
  margin-top:40px;
}

.price{
  background:var(--bg2);
  border:1px solid var(--border);
  padding:28px;
  border-radius:18px;
  transition:.3s;
}

.price:hover{
  transform:scale(1.05);
  border-color:var(--red);
}

.cta{
  text-align:center;
  background:
    radial-gradient(circle,rgba(225,6,0,.25),transparent 60%),
    var(--bg);
}

footer{
  background:#0b0b0f;
  text-align:center;
  padding:24px;
  color:#777;
}

/* MOBILE */
@media(max-width:768px){
  h1{font-size:32px}
  h2{font-size:26px}
  section{padding:60px 0}

  .menu{
    display:none;
    flex-direction:column;
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    background:var(--bg2);
    padding:20px;
    border-top:1px solid var(--border);
  }

  .menu.active{display:flex}
  .menu-toggle{display:block}
  .stats{flex-direction:column;gap:28px}
}

/* ============================= */
/* STOCKWISE NAVBAR SPACING FIX */
/* ============================= */

/* Lebarkan container khusus navbar */
header .container {
  max-width: 1280px;      /* lebih lebar & lega */
  padding: 0 32px;        /* napas kiri-kanan */
}

/* Tinggi navbar sedikit lebih lega */
header,
.nav {
  height: 84px;
}

/* Logo tidak nempel menu */
.logo {
  gap: 14px;
  margin-right: 48px;
}

/* Spacing menu lebih elegan */
.menu {
  gap: 34px;              /* kunci rasa Stockwise */
}

/* Jarak khusus untuk tombol Join Now */
.btn-nav {
  margin-left: 32px;
  padding: 11px 26px;
}

/* Font menu sedikit lebih refined */
.menu a {
  letter-spacing: 0.2px;
}

/* ============================= */
/* MOBILE TETAP AMAN */
/* ============================= */
@media (max-width: 900px) {
  header .container {
    padding: 0 20px;
  }

  .logo {
    margin-right: 0;
  }

  .menu {
    gap: 18px;
  }
}

#team {
  padding: 80px 20px;
  background: #0f0f0f;
  text-align: center;
}

#team h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.team-desc {
  color: #b0b0b0;
  margin-bottom: 50px;
}

.team-grid {
 display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 atas 2 bawah */
  gap: 30px;
  max-width: 900px;
  margin: auto;
}

.team-card {
  background: #151515;
  padding: 30px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255,0,0,0.15);
  box-shadow: 0 10px 25px rgba(255,0,0,0.08);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  border-color: #ff0000;
  box-shadow: 0 20px 45px rgba(255,0,0,0.3);
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #ff0000;
}

.team-card h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #ffffff;
}

.team-card span {
  color: #ff4d4d;
  font-size: 0.9rem;
  font-weight: 500;
}
/* MOBILE → 1 kolom */
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================= */
/* TEAM SCROLL ANIMATION */
/* ============================= */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
/* ============================= */
/* TEAM GRID FINAL (5 ORANG) */
/* ============================= */

/* MOBILE DEFAULT */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}

/* DESKTOP */
@media (min-width: 769px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================= */
/* TESTIMONIAL CLEAN VERSION */
/* ============================= */

/* ============================= */
/* TESTIMONIAL PREMIUM STYLE */
/* ============================= */

/* ============================= */
/* TESTIMONIAL SAFE (ISOLATED) */
/* ============================= */

#testimoni-safe {
  background: #0b0b0f;
  padding: 90px 0;
}

#testimoni-safe .testi-safe-head {
  text-align: center;
  margin-bottom: 50px;
}

#testimoni-safe .testi-safe-head span {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #ff4d4d;
  background: rgba(225,6,0,0.15);
  margin-bottom: 10px;
}

#testimoni-safe .testi-safe-head h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

#testimoni-safe .testi-safe-head p {
  max-width: 520px;
  margin: auto;
  color: #b5b5c3;
}

/* wrapper */
#testimoni-safe .testi-safe-wrapper {
  overflow: hidden;
}

#testimoni-safe .testi-safe-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s ease;
}

/* card */
#testimoni-safe .testi-safe-card {
  min-width: 300px;
  background: linear-gradient(180deg, #16161d, #101015);
  border: 1px solid rgba(255,0,0,0.25);
  border-radius: 18px;
  padding: 28px;
}

#testimoni-safe .testi-safe-card p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 14px;
}

#testimoni-safe .testi-safe-card strong {
  display: block;
}

#testimoni-safe .testi-safe-card em {
  font-style: normal;
  font-size: 13px;
  color: #ff4d4d;
}

/* active glow */
#testimoni-safe .testi-safe-card.is-active {
  border-color: #ff2a2a;
  box-shadow: 0 0 30px rgba(225,6,0,0.45);
}

/* MOBILE */
@media (max-width: 768px) {
  #testimoni-safe .testi-safe-card {
    min-width: 90%;
  }

  #testimoni-safe .testi-safe-head h2 {
    font-size: 26px;
  }
}

/* ============================= */
/* BENEFIT SECTION IMPROVED */
/* ============================= */

#benefit {
  background: radial-gradient(circle at top, rgba(225,6,0,.15), transparent 60%);
}

#benefit .benefit-head {
  text-align: center;
  margin-bottom: 50px;
}

#benefit .benefit-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #ff4d4d;
  background: rgba(225,6,0,0.15);
  margin-bottom: 12px;
}

#benefit h2 {
  margin-bottom: 10px;
}

#benefit .benefit-head p {
  max-width: 520px;
  margin: auto;
  color: var(--text2);
}

/* cards */
#benefit .benefit-cards {
  margin-top: 50px;
}

#benefit .benefit-card {
  position: relative;
  text-align: left;
  padding: 30px;
}

#benefit .benefit-card .icon {
  font-size: 28px;
  margin-bottom: 16px;
}

#benefit .benefit-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

#benefit .benefit-card p {
  font-size: 14px;
  line-height: 1.6;
}

/* hover glow */
#benefit .benefit-card:hover {
  transform: translateY(-8px);
  border-color: var(--red);
  box-shadow: 0 0 35px rgba(225,6,0,0.35);
}

/* MOBILE */
@media (max-width: 768px) {
  #benefit .benefit-card {
    text-align: center;
  }

  #benefit .benefit-card .icon {
    font-size: 32px;
  }
}

.stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 80px 20px;
  background: radial-gradient(circle at top, #1a0000, #000);
  text-align: center;
}

.stat {
  background: rgba(255, 0, 0, 0.06);
  border: 1px solid rgba(255, 0, 0, 0.25);
  padding: 40px 30px;
  border-radius: 16px;
  min-width: 220px;
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 40px rgba(255, 0, 0, 0.35);
}

.stat h3 {
  font-size: 42px;
  font-weight: 700;
  color: #ff2a2a;
  margin-bottom: 10px;
}

.stat p {
  color: #ddd;
  font-size: 15px;
  letter-spacing: 0.5px;
}

/* MOBILE */
@media (max-width: 768px) {
  .stats {
    flex-direction: column;
    gap: 25px;
  }

  .stat {
    width: 100%;
    max-width: 360px;
    margin: auto;
  }
}

/* ===============================
   BENEFIT – STOCKWISE STYLE
================================ */

#benefit {
  padding: 90px 0;
  background: #0b0b0b;
}

#benefit .benefit-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 12px;
}

#benefit .benefit-sub {
  text-align: center;
  color: #b5b5b5;
  max-width: 720px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.benefit-card {
  background: linear-gradient(180deg, #141414, #0e0e0e);
  border: 1px solid #1f1f1f;
  padding: 32px 26px;
  border-radius: 18px;
  transition: all 0.35s ease;
}

.benefit-card h3 {
  margin: 16px 0 12px;
  font-size: 20px;
}

.benefit-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #c7c7c7;
}

.benefit-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  background: rgba(225, 0, 0, 0.12);
  border-radius: 14px;
  font-size: 22px;
  color: #ff2a2a;
}

/* hover premium */
.benefit-card:hover {
  transform: translateY(-8px);
  border-color: rgba(225, 0, 0, 0.4);
  box-shadow:
    0 20px 40px rgba(225, 0, 0, 0.15);
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  #benefit {
    padding: 70px 0;
  }

  #benefit .benefit-title {
    font-size: 28px;
  }
}

/* ===============================
   SINGLE PRICING SECTION
================================ */

#price {
  padding: 100px 0;
  background: radial-gradient(circle at top, rgba(225,6,0,0.18), #0b0b0f);
}

.price-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 10px;
}

.price-sub {
  text-align: center;
  color: #b5b5c3;
  max-width: 600px;
  margin: 0 auto 60px;
}

.pricing-single {
  display: flex;
  justify-content: center;
}

.price-card-single {
  max-width: 420px;
  width: 100%;
  background: linear-gradient(180deg, #16161d, #0f0f15);
  border: 1px solid rgba(225,6,0,0.35);
  padding: 40px 32px;
  border-radius: 26px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(225,6,0,0.25);
  transition: transform 0.3s ease;
}

.price-card-single:hover {
  transform: translateY(-8px);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #e10600, #ff2a2a);
  color: #fff;
  font-size: 12px;
  padding: 6px 16px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.price-card-single h3 {
  font-size: 26px;
  margin-bottom: 20px;
}

.price-amount {
  font-size: 40px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 30px;
}

.price-amount small {
  font-size: 18px;
  opacity: 0.7;
  margin-right: 4px;
}

.price-list {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

.price-list li {
  padding: 10px 0;
  border-bottom: 1px dashed #2a2a35;
  color: #d6d6e1;
  font-size: 15px;
}

.price-btn {
  width: 100%;
}

/* MOBILE */
@media (max-width: 768px) {
  .price-title {
    font-size: 28px;
  }

  .price-card-single {
    padding: 34px 24px;
  }

  .price-amount {
    font-size: 34px;
  }
}


/* ===============================
   FAQ SECTION
================================ */

#faq {
  padding: 100px 0;
  background: #0e0e11;
}

.faq-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 10px;
}

.faq-sub {
  text-align: center;
  color: #b5b5c3;
  max-width: 640px;
  margin: 0 auto 60px;
}

.faq-list {
  max-width: 820px;
  margin: auto;
}

.faq-item {
  background: linear-gradient(180deg, #16161d, #101018);
  border: 1px solid #2a2a35;
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question span {
  font-size: 22px;
  color: var(--red);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  color: #b5b5c3;
  line-height: 1.7;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 22px;
}

/* MOBILE */
@media (max-width: 768px) {
  .faq-title {
    font-size: 26px;
  }

  .faq-question {
    font-size: 15px;
    padding: 18px 18px;
  }
}

/* ===============================
   CONTACT SECTION
================================ */

#contact {
  padding: 100px 0;
  background: radial-gradient(circle at top, rgba(225,6,0,0.15), #0b0b0f);
}

.contact-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 10px;
}

.contact-sub {
  text-align: center;
  color: #b5b5c3;
  max-width: 640px;
  margin: 0 auto 60px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  max-width: 900px;
  margin: auto;
}

.contact-info {
  background: linear-gradient(180deg, #16161d, #101018);
  border: 1px solid #2a2a35;
  border-radius: 18px;
  padding: 36px 30px;
}

.contact-info h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.contact-info p {
  margin-bottom: 24px;
  color: #b5b5c3;
}

.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list li {
  padding: 10px 0;
  font-size: 15px;
  color: #d6d6e1;
}

.contact-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #15151c, #0f0f15);
  border: 1px solid rgba(225,6,0,0.4);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(225,6,0,0.25);
}

.contact-btn {
  background: linear-gradient(135deg, #e10600, #ff2a2a);
  color: #fff;
  padding: 16px 34px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(225,6,0,0.35);
  transition: transform 0.25s ease;
}

.contact-btn:hover {
  transform: translateY(-3px);
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-title {
    font-size: 26px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-box {
    padding: 40px 20px;
  }

  .contact-btn {
    width: 100%;
    text-align: center;
  }
}

/* ===============================
   FOOTER
================================ */

.site-footer {
  background: #0b0b0f;
  border-top: 1px solid #1f1f26;
  padding: 70px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  height: 42px;
}

.footer-logo span {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1px;
}

.footer-brand p {
  margin-top: 14px;
  color: #b5b5c3;
  max-width: 420px;
  line-height: 1.6;
}

.footer-social h4 {
  font-size: 18px;
  margin-bottom: 16px;
}

.social-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.social-links a {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Instagram */
.social-links .ig {
  background: linear-gradient(135deg, #c13584, #e1306c, #fd1d1d);
  box-shadow: 0 6px 18px rgba(225,6,0,0.35);
}

/* TikTok */
.social-links .tt {
  background: linear-gradient(135deg, #25f4ee, #fe2c55);
  box-shadow: 0 6px 18px rgba(254,44,85,0.35);
}

/* Discord */
.social-links .dc {
  background: linear-gradient(135deg, #5865F2, #404EED);
  box-shadow: 0 6px 18px rgba(88,101,242,0.35);
}

.social-links a:hover {
  transform: translateY(-4px);
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #777;
  border-top: 1px solid #1f1f26;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-brand p {
    margin: 14px auto 0;
  }
}


/* ================= HERO ================= */

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
  background: black;
}

/* MOBILE: video tidak kepotong */
@media (max-width: 768px) {
  .hero {
    height: 100vh;
  }

  .hero-video {
    object-fit: contain;
    background: black;
  }
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.7),
    rgba(150,0,0,0.4),
    rgba(0,0,0,0.9)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  margin-bottom: 15px;
}

.hero-content p {
  color: #ddd;
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.price-btn,
.price-btn:hover,
.price-btn:focus,
.price-btn:active {
  text-decoration: none !important;
}

