* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Urbanist', sans-serif;
  scroll-behavior: smooth
}

body {
  background: #000000;
  color: #fff;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ===================== NAVBAR SECTION ===================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  background: transparent;
  transition: all 0.3s ease;
}


@media (min-width: 993px) {
  .navbar {
    overflow: hidden;
  }
}

/* Navbar saat discroll */
.navbar.scrolled {
  background: rgba(10, 18, 25, 0.9);
  backdrop-filter: blur(10px);
  box-shadow:
    988px 9px 22px -13px #ffffff,
    20px -10px 16px 13px #f4d472,
    354px 12px 18px -13px #FDCC35aa;
}

.navbar-container {
  max-width: 1320px;
  padding: 15px 30px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.navbar-logo {
  width: 228px;
  height: auto;
}

.navbar-image {
  width: 100%;
  height: auto;
}

.navbar-menu {
  display: flex;
  align-items: center;
}

.navbar-menu a {
  position: relative;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.nav-item {
  font-size: 14px;
  font-weight: 400;
  padding: 12px 12px;
  font-family: Poppins;
  border-radius: 32px;
}

.navbar-menu a:hover {
  transform: translateY(-2px);
  color: #FDCC35;
}

.contact-button {
  display: flex;
  align-items: center;
  padding: 0.6em 1.6em;
  margin-left: 23px;
  border: 1px solid #FFFFFF;
  border-radius: 60px;
  gap: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-button:hover {
  box-shadow: 0 8px 20px rgba(253, 204, 53, 0.4);
  transform: translateY(-2px);
}

.button-text {
  font-size: 14px;
  font-weight: 600 !important;
  text-decoration: none;
}

.wa-icon {
  width: 22px;
  height: auto;
}

/* Navbar Responsive */
.toggle-nav {
  display: none;
  background: none;
  border: none;
  color: #ffff;
  font-size: 24px;
  cursor: pointer;
}

/* ===================== HERO SECTION ===================== */
.hero {
  position: relative;
  padding: 133px 0;
}

.hero-container {
  position: relative;
  max-width: 1320px;
  margin: auto;
  text-align: center;
  align-items: center;
}

.hero-text h1 {
  font-size: 64px;
  line-height: 1.1;
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 20px;
}

.hero-text span {
  color: #FDCC35;
}

.hero-text p {
  max-width: 690px;
  font-size: 20px;
  font-weight: 600;
  margin: auto;
  margin-bottom: 30px;
  line-height: 1.5;

}

.hero-video {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
}

.hero-video iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.unmute-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;

  background: rgba(0, 0, 0, 0.75);
  color: #ffff;

  border: 1px solid rgba(253, 203, 53, 0.983);
  padding: 20px 34px;
  border-radius: 10px;

  cursor: pointer;
  z-index: 3;

  transition: all 0.3s ease;
}

.unmute-btn i {
  font-size: 36px;
  line-height: 1;
}

.unmute-btn .text {
  font-size: 24px;
  color: #ffff;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.unmute-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: translate(-50%, -50%) scale(1.06);
}

/* ================= VIDEO PAUSE OVERLAY ================= */

/* OVERLAY BACKGROUND */
.video-pause-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

/* ACTIVE STATE */
.video-pause-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* MODAL BOX */
.pause-modal {
  background: #111;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.video-pause-overlay.active .pause-modal {
  transform: translateY(0);
}

/* ICON */
.pause-modal i {
  font-size: 42px;
  color: #ff4d4d;
  margin-bottom: 20px;
}

/* TEXT */
.pause-modal h6 {
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
}

/* SHAKE ANIMATION */
@keyframes shakeAttention {
  0% {
    transform: translateX(0);
  }

  15% {
    transform: translateX(-4px);
  }

  30% {
    transform: translateX(4px);
  }

  45% {
    transform: translateX(-4px);
  }

  60% {
    transform: translateX(4px);
  }

  75% {
    transform: translateX(-2px);
  }

  90% {
    transform: translateX(2px);
  }

  100% {
    transform: translateX(0);
  }
}

/* APPLY TO BUTTON */
.pause-modal button {
  background: linear-gradient(45deg, #ff4d4d, #ff0000);
  border: none;
  padding: 14px 28px;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: shakeAttention 0.8s ease-in-out infinite;
  animation-delay: 3s;
}

/* Slight scale on hover */
.pause-modal button:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
}



/* ================= VIDEO END OVERLAY ================= */

/* ================= VIDEO END PLAN FIX ================= */

.video-end-overlay {
  width: 100%;
  background: #000;
  padding: 0 20px;

  opacity: 0;
  transform: translateY(40px);
  max-height: 0;
  overflow: hidden;

  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    max-height 0.6s ease;

}

.video-end-overlay.active {
  opacity: 1;
  transform: translateY(0);
  max-height: 2000px;
  /* pastikan cukup besar */
  padding: 60px 20px;
}

/* Reset pause modal biar tidak ganggu */
.video-end-overlay .pause-modal {
  background: transparent;
  box-shadow: none;
  padding: 0;
  max-width: 100%;
  width: 100%;
}

/* Plan box inside overlay */
.video-end-overlay .plan-box {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Plan join card responsive */
.video-end-overlay .plan-join {
  max-width: 600px;
  width: 100%;
  padding: 50px 40px;
  border-radius: 24px;
  background: rgba(0, 15, 30, 0.95);
  box-shadow:
    0 0 20px rgba(253, 204, 53, 0.6),
    0 0 80px rgba(253, 204, 53, 0.25);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .video-end-overlay {
    padding: 20px 10px;
  }

  .video-end-overlay .plan-join {
    padding: 12px 16px;
    border-radius: 18px;
  }

  .video-end-overlay .plan-join h2 {
    font-size: 28px;
  }

  .video-end-overlay .new-price {
    font-size: 32px;
  }

  .video-end-overlay .plan-list li {
    font-size: 14px;
  }

  .video-end-overlay .btn-plan {
    font-size: 16px;
    padding: 12px;
  }
}

@media (max-width: 480px) {

  .video-end-overlay .plan-join {
    padding: 10px 14px;
  }

  .video-end-overlay .plan-join h2 {
    font-size: 22px;
  }

  .video-end-overlay .old-price {
    font-size: 18px;
  }

  .video-end-overlay .new-price {
    font-size: 26px;
  }

  .video-end-overlay .plan-list {
    gap: 10px;
  }
}

.video-end-overlay .pause-modal button {
  background: #fdcb35;
  color: #000;
}

.video-end-overlay .pause-modal button:hover {
  transform: scale(1.08);
  box-shadow: 0 0px 10px #fdcb35;
}

.video-end-overlay .pause-modal {
  padding: 0;
  max-width: none;
  transform: none;
}

.end-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  background: #fdcb35;
  color: #000;
  font-weight: 800;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.end-btn:hover {
  transform: scale(1.05);
}


.hero-text .review-count {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  gap: 15px;
  color: #FDCC35;
}

.btn-primary {
  background: linear-gradient(90deg, #fdcc35, #ffdf6a);
  border: none;
  padding: 14px 74px;
  border-radius: 60px;
  text-decoration: none;
  font-family: Poppins;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 18px rgb(253, 203, 53);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(253, 204, 53, 0.4);
}

.btn-primary i {
  font-size: 22px;
  font-weight: 600;
}

/* ===================== PROGRAM SECTION ===================== */
.program-section {
  padding: 80px 20px;
}

.program-container {
  max-width: 1320px;
  margin: auto;
  gap: 0px;
}

/* HEADER */
.program-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.program-title h1 {
  width: 570px;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.2;
}

.program-title span {
  color: #fdcc35;
}

.program-description {
  max-width: 528px;
  font-size: 20px;
  font-weight: 600;
  text-align: right;
  line-height: 1.6;
}

/* GRID */
.program-grid {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.program-grid> :nth-child(1) {
  justify-self: start;
}

.program-grid> :nth-child(2) {
  justify-self: center;
}

.program-grid> :nth-child(3) {
  justify-self: end;
}

/* CARD */
.program-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.program-card .icon {
  width: 62px;
  height: auto;
}

.program-card h3 {
  font-size: 28px;
  font-weight: 400;
}

.program-card p {
  max-width: 345px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
}

.program-card a {
  margin-top: 6px;
  font-size: 20px;
  border-bottom: 1px solid #fff;
  width: fit-content;
  transition: opacity 0.3s ease;
  margin-right: 10px;
}

.program-card a:hover {
  opacity: 0.7;
}

/* Resposive */
@media (max-width: 992px) {
  .program-title h1 {
    width: 400px;
    font-size: 40px;
  }

  .program-description p {
    font-size: 16px;
  }

  .program-grid {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }

  /* matikan positioning khusus desktop */
  .program-grid> :nth-child(1),
  .program-grid> :nth-child(2),
  .program-grid> :nth-child(3) {
    justify-self: center;
  }
}

@media (max-width: 768px) {
  .program-header {
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
  }

  .program-description p {
    text-align: left;
  }

  .program-grid {
    justify-self: flex-start;
  }

  .program-card h3 {
    font-size: 24px;
  }

  .program-card p {
    font-size: 16px;
  }

  .program-card a {
    font-size: 18px;
  }
}

/* ===================== PROFILE SECTION ===================== */
.profile {
  padding: 80px 20px;
  position: relative;
  isolation: isolate;
}

.profile::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 70%;
  max-width: 1100px;
  margin-inline: auto;

  border-radius: 20px;
  padding: 1px;
  /* ketebalan border */

  background: linear-gradient(90deg,
      #FDCC35 0%,
      #000000 70%);

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;

  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;

  z-index: -1;
}


.profile-container {
  max-width: 1320px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

.profile-image {
  width: 100%;
  max-width: 628px;
  height: auto;
}

.profile-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

.profile-content {
  width: 700px;
}

.profile-content h2 {
  max-width: 510px;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 1.3;
}

.profile-content p {
  max-width: 545px;
  font-size: 20px;
  font-family: Poppins;
  color: #A8A8A8;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* List dengan Bullet Point Gold */
.profile-content ul {
  max-width: 560px;
  list-style: none;
  margin-bottom: 35px;
}

.profile-content ul li {
  font-family: Poppins;
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
  font-size: 18px;
}

.profile-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 20px;
  height: 20px;
  background: #fdcb354e;
  border-radius: 50%;

}

.profile-content ul li {
  position: relative;
}

.profile-content ul li::after {
  content: "●";
  color: #FDCC35;
  position: absolute;
  left: 4.5px;
  top: 3px;
  font-size: 1.05rem;
  z-index: 1;
  pointer-events: none;
}

.profile-content .footer-text {
  font-size: 20px;
  line-height: 1.6;
  color: #fff;
}


/* ===================== MEMBERSHIP SECTION ===================== */
.membership {
  padding: 80px 20px;
}

.membership-container {
  max-width: 1320px;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  margin: auto;
}

.membership-header .badge {
  position: relative;
  background: rgba(253, 204, 53, 0.2);
  padding: 10px 25px;
  padding-left: 35px;
  border-radius: 20px;
  color: #fff;
  font-family: Poppins;
  font-size: 14px;
}

.membership-header .badge::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: #fdcb35ca;
  border-radius: 50%;
  box-shadow:
    0 2px 6px 3px rgba(253, 203, 53, 0.55),
    0 0 2px 3px rgba(253, 203, 53, 0.742)
}

.membership-header h1 {
  font-size: 64px;
  font-weight: 400;
  margin: 30px 0;
}

.membership-header span {
  color: #FDCC35;
}

.membership-header p {
  max-width: 659px;
  margin: auto;
  font-size: 18px;
  font-family: Poppins;
  font-weight: 600;
  text-align: center;
  margin-bottom: 65px;
}

.portfolio {
  display: flex;
  overflow: hidden;
}

.portfolio-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
}

.portfolio-item {
  position: relative;
  width: calc(50% - 40px);
  /* 2 kolom */
  border-radius: 5%;
  border: solid;
  border-color: rgba(253, 204, 53, 0.2);
  overflow: hidden;
}

.portfolio-item::after {
  content: "";
  position: absolute;
  bottom: -90px;
  left: 50%;
  transform: translateX(-50%);
  width: 350px;
  height: 250px;
  background: radial-gradient(circle,
      rgba(253, 204, 53, 0.25) 0%,
      rgba(253, 204, 53, 0.15) 40%,
      rgba(253, 204, 53, 0.05) 70%,
      rgba(253, 204, 53, 0) 100%);
  filter: blur(16px);
  pointer-events: none;
  border-radius: 50%;
}

.portfolio-image {
  width: 100%;
  height: auto;
  display: block;
}

.portfolio-description {
  display: flex;
  position: relative;
  z-index: 2;
  flex-direction: column;
  align-items: flex-start;
  margin: 15px 45px 55px 45px;
}

.portfolio-title-text {
  font-size: 32px;
  font-weight: 400;
}

.portfolio-description-text {
  font-size: 20px;
  font-weight: 200;
  text-align: left;
  margin-top: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .portfolio-item {
    width: 100%;
  }
}

/* ===================== VIP ACCESS SECTION ===================== */
.vip-access {
  padding: 80px 20px;
  text-align: center;
  max-width: 1320px;
  margin: auto;
}

.vip-access span {
  background: rgba(253, 204, 53, 0.2);
  border: 1px solid #c5a059;
  padding: 10px 25px;
  border-radius: 20px;
  font-family: Poppins;
  font-size: 14px;
}

.vip-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;

  margin: 80px 0px;
  padding: 81px 3% 4%;
  border-radius: 20px;
  background: rgba(0, 15, 30, 0.7);

  /* --- shadow ke dalam (inset) --- */
  box-shadow:
    inset 0 0 40px #FDCC35,
    inset 0 0 80px #FDCC35;
}

.vip-join {
  max-width: 565px;
  width: 100%;
  text-align: left;
  padding-left: 5px;
}

.vip-join h2 {
  font-size: 48px;
  font-weight: 600;
}

.vip-join .subtitle {
  margin-top: 10px;
  font-size: 22px;
}

.vip-join .old-price {
  text-decoration: line-through;
  color: #ff4d4d;
  font-size: 28px;
  font-weight: 200;
  margin-top: 30px;
}

.vip-join .new-price {
  font-size: 48px;
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 30px;
}

/* BUTTON */
.btn-vip {
  background: linear-gradient(90deg, #fdcc35, #ffdf6a);
  width: 100%;
  border: none;
  padding: 14px 32px;
  border-radius: 30px;
  font-family: Poppins;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 18px rgb(253, 203, 53);
}

.btn-vip:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(253, 204, 53, 0.4);
}

.vip-benefit {
  max-width: 565px;
  text-align: left;
}

.vip-benefit h4 {
  font-family: Poppins;
  margin-bottom: 22px;
  font-size: 16px;
  font-weight: 500;
}

.benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.benefit-list li {
  position: relative;
  padding-left: 35px;
  font-family: Poppins;
  font-size: 18px;
  line-height: 1.6;
  color: #dcdcdc;
}

.benefit-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 4px;
  width: 22px;
  height: 22px;
  background: #fdcc35;
  border-radius: 50%;
  /* box-shadow: 0 0 10px rgba(253, 204, 53, 0.8); */
  color: #000000;
  font-size: 11px;
  line-height: 1;
}

/* ===================== COACHING SECTION ===================== */
.coaching {
  padding: 80px 20px;
  overflow: hidden;
}

.coaching-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.coaching-header::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 100px;
  transform: translateX(-50%) translateY(-45%);
  width: 570px;
  height: 270px;
  background: radial-gradient(circle, rgba(241, 196, 15, 0.24) 0%, rgba(241, 196, 15, 0.10) 50%);
  filter: blur(35px);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.coaching-header .badge {
  position: relative;
  background: rgba(197, 160, 89, 0.2);
  padding: 10px 20px 10px 35px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: #c5a059;
  display: inline-block;
  margin-bottom: 20px;
}

.coaching-header .badge::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: #fdcb35ca;
  border-radius: 50%;
  box-shadow:
    0 2px 6px 3px rgba(253, 203, 53, 0.55),
    0 0 2px 3px rgba(253, 203, 53, 0.742)
}

.coaching-header h1 {
  font-size: 64px;
  font-weight: 400;
  max-width: 800px;
  margin: 0 auto 20px;
}

.coaching-header .highlight {
  color: #f1c40f;
}

.coaching-header .subtitle {
  max-width: 490px;
  font-weight: 600;
  font-size: 18px;
  margin: 0 auto 30px;
}

.btn-book {
  display: inline-block;
  background: #f1c40f;
  border: none;
  padding: 12px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 0 18px rgb(253, 203, 53);
  transition: 0.3s;
}

.btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(253, 204, 53, 0.4);
}

/* Grid Layout */
.coaching-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 1320px;
  margin: 0 auto;
  margin-bottom: 50px;
  align-items: center;
}

.grid-column {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.feature-item {
  max-width: 242px;
  text-align: center;
}

.icon-circle {
  width: 72px;
  height: 72px;
  margin: 0 auto;
}

.feature-item h3 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}

.feature-item p {
  font-size: 0.9rem;
  line-height: 16px;
}

/* Tengah: Gambar Stack */
.center-image {
  position: relative;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.center-image img {
  max-width: 100%;
}

/* ===================== ACADEMI TRADING SECTION ===================== */
.academy-trading {
  padding: 130px 20px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

.academy-trading::before,
.academy-trading::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  max-width: 1620px;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.academy-trading::before {
  top: 0;
  background: linear-gradient(90deg, #fdcc35 0%, #111 100%);
}

.academy-trading::after {
  bottom: 0;
  background: linear-gradient(90deg, #111 0%, #fdcc35 100%);
}

.academy-trading__container {
  max-width: 1320px;
  margin: auto;
}

/* Header */
.academy-trading__header {
  text-align: center;
  margin-bottom: 80px;
}

.academy-trading__badge {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  padding-left: 35px;
  background: rgba(255, 200, 0, 0.15);
  border-radius: 20px;
  font-family: Poppins;
  font-size: 14px;
  margin-bottom: 20px;
}

.academy-trading__badge::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: #fdcb35ca;
  border-radius: 50%;
  box-shadow:
    0 2px 6px 3px rgba(253, 203, 53, 0.55),
    0 0 2px 3px rgba(253, 203, 53, 0.742)
}

.academy-trading__title {
  font-size: 64px;
  font-weight: 400;
}

.academy-trading__title span {
  color: #ffcc00;
}

.academy-trading__subtitle {
  font-family: Poppins;
  margin-top: 18px;
  font-weight: 600;
  margin-inline: auto;
}

/* Timeline */
.academy-trading__timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.academy-trading__timeline::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 60px;
  height: 71%;
  width: 2px;
  background-color: #ffcc00;
}

.academy-trading__item {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
}

.academy-trading__number {
  position: relative;
  margin-top: 30px;
}

.academy-trading__number span {
  background-color: #000;
  border: 1px solid #ffcc00;
  border-radius: 10px;
  padding: 12px 12px;
  font-size: 16px;
  font-weight: 400;
}

/* Content */
.academy-trading__content {
  max-width: 566px;
}

.academy-trading__content h3 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
}

.academy-trading__content h3 span {
  color: #ffcc00;
}

.academy-trading__content ul {
  list-style: none;
}

.academy-trading__content li {
  font-family: Poppins;
  font-size: 18px;
  margin-bottom: 14px;
  padding-left: 40px;
  position: relative;
}

.academy-trading__content li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 17px;
  width: 22px;
  height: 22px;
  background: #fdcc35;
  border-radius: 50%;
  /* box-shadow: 0 0 10px rgba(253, 204, 53, 0.8); */
  color: #000000;
  font-size: 11px;
  line-height: 1;
}

/* Media */
.academy-trading__media {
  display: flex;
  align-items: center;
  max-width: 100%;
}

.academy-trading__media img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ===================== ACADEMI LEARNING SECTION ===================== */
.academy-learning {
  padding: 80px 20px;
}

.academy-learning__container {
  max-width: 1320px;
  margin: auto;
}

.academy-learning__title {
  text-align: center;
  font-size: 64px;
  font-weight: 400;
  margin-bottom: 80px;
}

.academy-learning__title span {
  color: #ffcc00;
}

.academy-learning__timeline {
  position: relative;
  padding-left: 30px;
}

.academy-learning__timeline::before {
  content: "";
  position: absolute;
  left: 51%;
  top: 10px;
  bottom: 13%;
  width: 2px;
  background: #555151;
}

.academy-learning__item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 80px minmax(0, 1fr);
  margin-bottom: 80px;
}

/* HAPUS garis setelah item terakhir */
.academy-learning__item:last-child::after {
  display: none;
}

.academy-learning__image {
  width: 100%;
  max-width: 594px;
}

.academy-learning__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.academy-learning__content {
  max-width: 593px;
}

.academy-learning__heading {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 14px;
}

.academy-learning__text {
  font-size: 20px;
  line-height: 1.6;
  max-width: 100%;
}

.academy-learning__highlight {
  color: #ffcc00;
}

.academy-learning__dot {
  text-align: center;
}

.academy-learning__dot i {
  color: #FFD600;
  font-size: 24px;

}

/* Responsive */
@media (max-width: 768px) {
  .academy-learning__item {
    grid-template-columns: 1fr;
    padding-left: 20px;
    gap: 30px;
  }

  .academy-learning__timeline {
    padding-left: 20px;
  }

  .academy-learning__timeline::before {
    left: 12px;
    bottom: 14%;
  }

  .academy-learning__dot {
    position: absolute;
    top: 10px;
    left: -18px;
  }

}

/* ===================== PLAN COURSE SECTION ===================== */
.plan-course {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  margin: auto;
}

.plan-course::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  max-width: 1620px;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
  bottom: 0;
  background: linear-gradient(90deg, #fdcc35 0%, #111 100%);
}

.plan-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.plan-join {
  max-width: 565px;
  width: 100%;
  text-align: left;
  padding: 60px 3% 4%;

  border-radius: 40px;
  background: rgba(0, 15, 30, 0.7);

  /* --- shadow ke dalam (inset) --- */
  box-shadow:
    0 0 15px #FDCC35,
    0 0 60px #FDCC35;
}

.plan-join h2 {
  font-size: 48px;
  font-weight: 600;
}

.plan-join .old-price {
  text-decoration: line-through;
  color: #ff4d4d;
  font-size: 28px;
  font-weight: 200;
  margin-top: 30px;
}

.plan-join .new-price {
  font-size: 48px;
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 30px;
}


.plan-join h3 {
  font-family: Poppins;
  margin-bottom: 22px;
  font-size: 16px;
  font-weight: 500;
}

.plan-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.plan-list li {
  position: relative;
  padding-left: 26px;
  font-family: Poppins;
  font-size: 18px;
  line-height: 1.6;
  color: #dcdcdc;
}

.plan-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  background: #fdcc35;
  border-radius: 50%;
  /* box-shadow: 0 0 10px rgba(253, 204, 53, 0.8); */
  color: #000000;
  font-size: 9px;
  line-height: 1;
}

/* BUTTON */
.btn-plan {
  background: linear-gradient(90deg, #fdcc35, #ffdf6a);
  width: 100%;
  border: none;
  padding: 14px 32px;
  border-radius: 30px;
  font-family: Poppins;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 18px rgb(253, 203, 53);
}

.btn-plan:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(253, 204, 53, 0.4);
}

/* =====================  TESTIMONIAL SECTION ===================== */
.testimonial {
  padding: 100px 20px;
  overflow: hidden;
}

.testimonial__container {
  max-width: 1320px;
  margin: auto;
}

.testimonial__title {
  text-align: center;
  font-size: 64px;
  font-weight: 400;
  margin-bottom: 60px;
}

.testimonial__title span {
  color: #ffcc00;
}

.testimonial__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 80px;

}

.testimonial__swiper {
  width: 100%;
}

.testimonial__card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px;
}

.testimonial__quote {
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.testimonial__user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial__user strong {
  display: block;
  font-size: 16px;
}

.testimonial__user small {
  font-size: 16px;
}

/* ARROW BASE */
.testimonial__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgb(0, 0, 0);
  color: #fff;
  font-size: 28px;
  cursor: pointer;

  z-index: 10;
  transition: all 0.3s ease;
}

/* LEFT / RIGHT POSITION */
.testimonial__arrow--left {
  left: -20px;
}

.testimonial__arrow--right {
  right: -20px;
}

/* HOVER EFFECT */
.testimonial__arrow:hover {
  transform: translateY(-50%) scale(1.08);
}

/* ACTIVE (CLICK) */
.testimonial__arrow:active {
  transform: translateY(-50%) scale(0.95);
}

/* PROOF SLIDER */
.testimonial__proofs {
  max-width: 1600px;
  width: 100%;
}

.testimonial__proofs .swiper-wrapper {
  transition-timing-function: linear !important;
}

.testimonial__proofs .swiper-slide {
  display: flex;
  justify-content: center;
}

.testimonial__proofs img {
  width: 100%;
  max-width: 405px;
  border-radius: 12px;
  object-fit: cover;
  background: #111;
}


@media (max-width: 992px) {
  .testimonial__swiper {
    grid-template-columns: 1fr;
  }

  .testimonial__proofs {
    grid-template-columns: 1fr;
  }

  .testimonial__arrow {
    display: none;
  }

  .testimonial__title {
    font-size: 32px;
  }
}

/* ===================== CONTACT SUPPORT SECTION ===================== */
.contact-support {
  padding: 80px 20px;
  text-align: center;
  max-width: 1320px;
  margin: auto;
}

.cta-content {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  text-align: center;
  margin: 70px 40px;

  padding: 60px 3% 7%;

  border-radius: 20px;
  background: rgba(0, 15, 30, 0.7);

  /* --- shadow ke dalam (inset) --- */
  box-shadow:
    inset 0 0 40px #FDCC35,
    inset 0 0 80px #FDCC35;
}

.title-cta {
  font-size: 44px;
  font-weight: 400;
  margin-top: 25px;
  margin-bottom: 40px;
}

.title-cta span {
  color: #FDCC35;
}

.button-cta {
  background: linear-gradient(90deg, #fdcc35, #ffdf6a);
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border-radius: 30px;
  border: none;
  gap: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.button-cta:hover {
  box-shadow: 0 8px 20px rgba(253, 204, 53, 0.4);
  transform: translateY(-2px);
}

.button-cta__text {
  font-family: Poppins;
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

/* ===================== SITE LINKS SECTION ===================== */
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
}

.site-text {
  display: flex;
  gap: 35px;
}

.site-text span {
  font-size: 14px;
  cursor: pointer;
  font-weight: 600;
}

.copyright {
  max-width: 1320px;
  width: 90%;
  margin: 50px auto;

  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.copyright::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #373737;
}

.notice {
  font-size: 14px;
  font-family: Poppins;
  padding-top: 30px;
}

.site-legal {
  display: flex;
  gap: 20px;
  font-size: 14px;
  font-family: Poppins;
  padding-top: 30px;
}

.site-legal a {
  text-decoration: underline;
  text-underline-offset: 4px;
}


/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {

  /* Navbar Section*/
  .navbar {
    padding: 4px 12px;
  }

  .navbar-container {
    padding: 8px 12px;
  }

  .navbar-logo {
    width: 190px;
  }

  .toggle-nav {
    display: block;
    color: #FDCC34;
  }


  .navbar-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;

    background: rgba(10, 18, 25, 0.95);

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;

    padding: 0 20px;
    overflow: hidden;

    /* CLOSED STATE */
    max-height: 0;
    opacity: 0;
    pointer-events: none;

    transition:
      max-height 0.45s ease,
      opacity 0.3s ease;
  }

  .navbar-menu.active {
    max-height: 400px;
    /* cukup untuk semua menu */
    opacity: 1;
    pointer-events: auto;
    padding: 20px;
  }


  .contact-button {
    margin-left: 0;
  }

  /* Hero Section */
  .hero {
    padding: 70px 0;
  }

  .hero-container {
    max-width: 960px;
    padding: 0 24px;
  }

  .hero-text h1 {
    font-size: 40px;
  }

  .hero-text p {
    font-size: 16px;
    max-width: 440px;
  }

  .btn-primary {
    font-size: 20px;
    gap: 8px;
  }

  /* Program Section */
  .program-section {
    padding: 60px 20px;
  }

  .program-grid {
    justify-items: flex-start;
  }

  /* Profile Section */
  .profile {
    padding: 60px 20px;
    overflow-x: hidden;
  }

  .profile::before {
    content: none;
  }

  .profile-container {
    flex-direction: column;
    overflow: hidden;
  }

  .profile-content {
    width: auto;
  }

  .profile-content h2 {
    font-size: 24px;
  }

  .profile-content p,
  .profile-content .footer-text,
  .profile-content ul li {
    font-size: 16px;
  }

  .profile-content p {
    margin-bottom: 35px;
  }

  /* Membership Section */
  .membership {
    padding: 60px 20px;
  }

  .membership-header h1 {
    font-size: 40px;
    margin: 22px 0 10px;
  }

  .portfolio-title-text {
    font-size: 24px;
  }

  .membership-header p {
    max-width: 520px;
    font-size: 16px;
    margin-bottom: 50px;
  }

  .portfolio-description-text {
    font-size: 16px;
  }

  .portfolio-gallery {
    /* flex-direction: column; */
    justify-content: center;
    align-items: center;
    gap: 45px;
  }

  /* Vip Section */
  .vip-access {
    padding: 60px 20px;
  }

  .vip-box {
    padding: 65px 4% 6%;
  }

  .vip-join h2 {
    font-size: 40px;
  }

  .vip-join .subtitle {
    font-size: 20px;
  }

  .vip-join .old-price {
    font-size: 24px;
  }

  .vip-join .new-price {
    font-size: 40px;
  }

  .btn-vip {
    font-size: 16px;
  }

  .vip-benefit h4 {
    font-size: 20px;
  }

  .benefit-list li {
    font-size: 16px;
  }

  /* Coaching Section */
  .coaching {
    padding: 60px 20px;
  }

  .coaching-header h1 {
    max-width: 530px;
    font-size: 40px;
  }

  .coaching-header .subtitle {
    max-width: 410px;
    font-size: 16px;
  }

  .btn-book {
    font-size: 14px;
  }

  .coaching-grid {
    justify-content: center;
    flex-direction: column;
  }

  .grid-column {
    flex-direction: row;
  }

  .center-image {
    height: 100%;
  }

  /* Academy Trading Section */
  .academy-trading {
    padding: 60px 20px;
  }

  .academy-trading__title {
    font-size: 40px;
  }

  .academy-trading__subtitle {
    font-size: 16px;
  }

  .academy-trading__content h3 {
    font-size: 24px;
  }

  .academy-trading__timeline::before {
    top: 10%;
    height: 75%;
    left: 11%;
  }

  .academy-trading__content {
    max-width: 635px;
  }

  .academy-trading__content li {
    font-size: 16px;
  }

  .academy-trading__item {
    grid-template-columns: 0.2fr 1fr;
    grid-template-rows: auto auto;
    row-gap: 24px;
    align-items: start;
  }

  /* IMAGE di baris pertama */
  .academy-trading__media {
    grid-column: 2 / -1;
    grid-row: 1;
  }

  /* CONTENT di baris kedua */
  .academy-trading__content {
    grid-column: 2 / -1;
    grid-row: 2;
  }

  /* NOMOR ikut sejajar dengan CONTENT */
  .academy-trading__number {
    grid-column: 1 / 2;
    grid-row: 2;
    margin-top: 0;
    padding-left: 50%;
  }

  .academy-trading__timeline {
    gap: 60px;
  }

  .academy-trading__media {
    grid-column: 1 / -1;
  }

  .academy-trading__media img {
    max-width: 420px;
    margin: 0 auto;
  }

  /* Academy Learning Section */
  .academy-learning {
    padding: 60px 20px;
  }

  .academy-learning__title {
    font-size: 40px;
  }

  .academy-learning__heading {
    font-size: 24px;
  }

  .academy-learning__text {
    font-size: 16px;
  }

  /* Plan Course Section */
  .plan-course {
    padding: 60px 20px;
  }

  .plan-join h2 {
    font-size: 40px;
  }

  .plan-join .old-price {
    font-size: 24px;
  }

  .plan-join .new-price {
    font-size: 40px;
  }

  .plan-join h3 {
    font-size: 20px;
  }

  .plan-list li {
    font-size: 16px;
  }

  .btn-plan {
    font-size: 16px;
  }

  /* Testimonial Section */
  .testimonial {
    padding: 60px 20px 0px;
  }

  .testimonial__title {
    font-size: 40px;
  }

  .testimonial__quote {
    font-size: 20px;
  }

  /* Testimonial Proofs */
  .testimonial__proofs img {
    max-width: 350px;
  }

  /* Contact Support Section */
  .contact-support {
    padding: 60px 20px;
  }

  .title-cta {
    font-size: 24px;
  }

  .cta-content {
    padding: 40px 3% 7%;
  }

  .button-cta i {
    font-size: 16px;
  }

  /* Footer Section */
  .site-text {
    flex-direction: column;
  }

  .site-text span {
    gap: 30px;
    font-size: 12px;
  }

  .copyright {
    flex-direction: column;
  }
}

/* RESPONSIVE 768px*/
@media (max-width: 768px) {
  .pause-modal {
    padding: 30px 20px;
  }

  .pause-modal i {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .pause-modal h6 {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .pause-modal button {
    padding: 10px 24px;
  }

  .vip-box {
    flex-direction: column;
    padding: 60px 10% 16%;
  }

  .plan-join {
    padding: 60px 5% 9%;
  }

  .cta-content {
    padding: 40px 5% 9%;
    box-shadow:
      inset 0 0 20px #FDCC34,
      inset 0 0 50px #FDCC35;
  }

  .academy-trading__number {
    padding-left: 44%;
  }
}


/* RESPONSIVE 576px MOBILE */
@media (max-width: 576px) {

  /* Navbar */
  .navbar {
    padding: 10px 15px;
  }

  .navbar-container {
    gap: 10px;
    padding: 8px 6px;
  }

  .navbar-logo {
    width: 152px;
  }

  /* Hero Section */
  .hero {
    padding: 0 0;
  }

  .hero-container {
    padding: 0 10px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 8px 18px;
    gap: 5px;
  }

  .hero-text h1 {
    font-size: 38px;
    margin-top: 0px;
    margin-bottom: 18px;
  }

  .hero-text p {
    max-width: 280px;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 18px;
  }

  .unmute-btn {
    padding: 10px 10px;
    gap: 10px;
  }

  .unmute-btn .text {
    font-size: 16px;
    font-weight: 600;
  }

  .unmute-btn i {
    font-size: 28px;
  }

  .pause-modal {
    padding: 10px 10px;
    max-width: 340px;
  }

  .pause-modal i {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .pause-modal h6 {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .pause-modal button {
    padding: 6px 18px;
  }

  .review-count img {
    width: 133px;
    height: auto;
    display: block;
  }

  .hero-text .review-count {
    font-size: 16px;
  }

  .btn-primary {
    font-size: 16px;
    padding: 12px 64px;
  }

  /* Program Section */
  .program-title h1 {
    width: auto;
  }

  .program-grid {
    grid-template-columns: 1fr;
  }

  .program-card {
    gap: 10px;
  }

  /* Profile */
  .profile {
    padding: 60px 20px 30px;
  }

  .profile-content h2 {
    margin-bottom: 10px;
  }

  /* Membership Section */
  .membership-header p {
    font-weight: 400;
  }

  /* Membership */
  .portfolio-gallery {
    gap: 30px;
  }

  .portfolio-description {
    margin: 15px 25px 35px 25px;
  }

  /* Vip Access */
  .vip-box {
    margin: 50px 0 0;
    box-shadow:
      inset 0 0 20px #FDCC35,
      inset 0 0 40px #FDCC35;
  }

  .btn-vip {
    padding: 12px 32px
  }

  /* Coaching Section */
  .coaching {
    padding-bottom: 0;
  }

  .coaching-header h1 {
    font-size: 38px;
  }

  .btn-book {
    padding: 10px 36px;
  }

  .grid-column {
    flex-direction: column;
    gap: 45px;
  }

  .feature-item {
    max-width: 310px;
  }

  .feature-item h3 {
    margin: 15px 0;
  }

  /* Academy Trading Section */
  .academy-trading__badge {
    margin-bottom: 15px;
  }

  .academy-trading__timeline {
    gap: 60px;
  }

  .academy-trading__timeline::before {
    height: 74%;
    top: 8%;
    left: 28px;
  }

  .academy-trading__item {
    grid-template-columns: 60px 1fr;
    gap: 10px;
  }

  .academy-trading__number {
    padding-left: 0;
    margin-top: 12px;
  }

  .academy-trading__media {
    justify-content: flex-end;
    margin-bottom: 20px;
  }

  .academy-trading__media img {
    max-width: 270px;
    width: 100%;
    margin: 0;
  }

  /* Academy Learning */
  .academy-learning {
    padding: 60px 20px 0;
  }

  .academy-learning__title {
    margin-bottom: 50px;
  }

  .academy-learning__timeline::before {
    bottom: 15%;
  }

  .academy-learning__item {
    gap: 20px;
    margin-bottom: 50px;
  }

  /* Plan Course*/
  .plan-join {
    box-shadow:
      0 0 5px #FDCC35,
      0 0 26px #FDCC35;
  }

  .btn-plan {
    padding: 12px 32px;
  }

  /* Testimonial */

  /* Contact Support */
  .cta-content {
    margin: 50px 10px;
  }

  .button-cta {
    padding: 10px 32px
  }

  /* Footer */
  footer {
    padding: 0px 15px 10px;
  }

  .copyright {
    font-size: 12px;
    flex-direction: column;
  }

  .site-legal {
    justify-content: center;
    flex-wrap: wrap;
  }

  .notice,
  .site-legal {
    font-size: 12px;
  }
}

/* ========== Detaoil First View ============ */

/* Responsive Margin-Top Adjustments */
@media (min-width: 340px) and (max-width: 359px) {

  /* Z Fold */
  .hero {
    padding: 5px 0 0;
  }


  .hero-text h1,
  .program-title h1,
  .membership-header h1,
  .coaching-header h1,
  .academy-trading__title,
  .academy-learning__title,
  .plan-join h2,
  .testimonial__title {
    font-size: 35px;
  }

  .hero-text p {
    margin-bottom: 22px;
  }

  .academy-trading__content h3 {
    font-size: 20px;
  }

  .title-cta {
    font-size: 20px;
  }
}

@media (min-width: 360px) and (max-width: 373px) {

  /* Galaxy S8 */
  .hero {
    padding: 3px 0 0;
  }

  .hero-text h1 {
    font-size: 37px;
  }

  .hero-text p {
    margin-bottom: 28px;
  }
}

@media (min-width: 374px) and (max-width: 376px) {

  /* iPhone SE */
  .hero-text p {
    margin-bottom: 30px;
  }
}

@media (min-width: 377px) and (max-width: 391px) {

  /* iPhone 12 */
  .hero {
    padding: 5px 0 10px;
  }

  .hero-text p {
    margin-bottom: 20px;
  }
}

@media (min-width: 392px) and (max-width: 415px) {

  /* iPhone XR, S20, Px 7, A51 */
  .hero {
    padding: 5px 0 10px;
  }

  .hero-text p {
    margin-bottom: 28px;
  }
}

@media (min-width: 416px) and (max-width: 431px) {

  /* iPhone 14 */
  .hero {
    padding: 5px 0 0px;
  }

  .hero-text p {
    margin-bottom: 28px;
  }
}

@media (min-width: 432px) and (max-width: 541px) {

  /* Duo */
  .hero {
    padding: 5px 0 0;
  }

  .hero-text p {
    margin-bottom: 28px;
  }
}

@media (min-width: 768px) and (max-width: 815px) {

  /* iPad Mini */
  .hero {
    padding: 5px 0 10px;
  }

  .hero-text p {
    margin-bottom: 28px;
  }
}

@media (min-width: 816px) and (max-width: 820px) {

  /* iPad Air */
  .hero {
    padding: 5px 0 30px;
  }
}

@media (min-width: 821px) and (max-width: 855px) {

  /* Asus */
  .hero {
    padding: 5px 0 20px;
  }
}

@media (min-width: 856px) and (max-width: 912px) {

  /* Surface Pro */
  .hero {
    padding: 7px 0 30px;
  }
}

@media (min-width: 1024px) and (max-width: 1024px) and (max-height: 800px) {

  /* Hub */
  .hero {
    padding: 2px 0;
  }
}

@media (min-width: 1024px) and (max-width: 1024px) and (min-height: 801px) {

  /* iPad Pro */
  .hero {
    padding: 7px 0 20px;
  }
}

@media (min-width: 1025px) and (max-width: 1280px) {

  /* Nest Hub Max */
  .hero {
    padding: 4px 0;
  }
}