.menu_active {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
  border-left: 4px solid #D4AF37;
  border-radius: 0 15px 15px 0;
  margin-right: 15px;
  color: #F0C265;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  height: 100vh;
  background-color: #1a1a1a;
  border-right: 1px solid rgba(212, 175, 55, 0.2);
  overflow-y: auto;
  z-index: 1000;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

nav::-webkit-scrollbar {
  display: none;
}

.nav-container {
  display: flex;
  flex-direction: column;
  padding: 30px 20px;
  height: 100%;
}

.nav-container>a {
  text-decoration: none;
  display: block;
}

.logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}

.nav-logo-img {
  height: 60px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6));
}

.brand-text {
  display: block;
}

.brand-main {
  font-size: 1.4rem;
  color: #fff;
  font-weight: bold;
}

.text-gold {
  color: #D4AF37;
}

.nav-scroll-wrapper {
  width: 100%;
  flex-grow: 1;
}

.nav-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-links li {
  width: 100%;
}

.nav-links a {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #ccc;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 12px;
  transition: 0.3s;
  font-size: 1rem;
  white-space: nowrap;
  font-size: 1.7rem;
}

.nav-links a i {
  color: #D4AF37;
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-links a.nav-download {

  color: #00FF41;

}

.nav-links a.nav-download i {
  color: #00FF41;
}

.scroll-fade {
  display: none;
}

@media (max-width: 1024px) {
  body {
    padding-left: 200px;
  }

  nav {
    width: 200px;
  }

  .nav-container {
    padding: 20px 15px;
  }

  .nav-logo-img {
    height: 50px;
  }

  .brand-main {
    font-size: 1.1rem;
  }

  .nav-links a {
    font-size: 0.9rem;
    padding: 10px 12px;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  body {
    padding-left: 100px;
  }

  nav {
    width: 100px;
  }

  .nav-container {
    padding: 20px 5px;
  }

  .logo-wrapper {
    margin-bottom: 20px;
  }

  .nav-logo-img {
    height: 35px;
    margin-bottom: 8px;
  }

  .brand-main {
    font-size: 0.75rem;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
  }

  .nav-links ul {
    gap: 10px;
  }

  .nav-links a {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-size: 0.75rem;
    padding: 10px 5px;
    white-space: normal;
    gap: 6px;
    border-radius: 8px;
    line-height: 1.3;
  }

  .nav-links a i {
    font-size: 1.3rem;
    width: auto;
  }
}

@media (max-width: 480px) {
  body {
    padding-left: 85px;
  }

  nav {
    width: 85px;
  }

  .nav-logo-img {
    height: 30px;
  }

  .brand-main {
    font-size: 0.65rem;
  }

  .nav-links a {
    font-size: 0.65rem;
    padding: 8px 4px;
    gap: 4px;
  }

  .nav-links a i {
    font-size: 1.1rem;
  }
}

.faq-container {
  max-width: 900px;
  margin: 50px auto;
  background-color: #1a1a1a;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #D4AF37;
  font-size: 1.8rem;
  border-bottom: 2px solid rgba(212, 175, 55, 0.5);
  display: inline-block;
  padding-bottom: 10px;
}

.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #333;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 15px;
  font-size: 1.7rem;
  font-weight: 600;
  color: #D4AF37;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: #FFD700;
  background: rgba(212, 175, 55, 0.05);
}

.faq-question.active {
  color: #FFD700;
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  color: #D4AF37;
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 15px;
}

.faq-answer p {
  color: #EAEAEA;
  line-height: 1.7;
  margin: 0 0 20px 0;
  font-size: 1rem;
}

.bt_contact0 {
  bottom: 130px !important;
}

.fa-line {
  color: green !important;
}

.form-group>label {
  font-size: 1.5rem;
}

.text-gold {
  color: #D4AF37 !important;
}

.text-green {
  color: #00FF41 !important;
}

.text-red {
  color: #ff5e5e !important;
}

.text-white {
  color: #ffffff !important;
  font-weight: 600;
}

.calc-card {
  background: #1a1a1a;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 15px;
  padding: 35px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  margin-bottom: 30px;
}

.input-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.form-group {
  margin-bottom: 5px;
}

label {
  display: block;
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #d1d1d1;
}

input[type="number"] {
  width: 100%;
  background: #080808;
  border: 2px solid #333;
  color: #D4AF37;
  padding: 15px;
  border-radius: 10px;
  font-family: 'Prompt', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  transition: 0.3s;
  box-sizing: border-box;
}

input[type="number"]:focus {
  border-color: #D4AF37;
  background: #151515;
  outline: none;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

small {
  font-size: 0.85rem !important;
  color: #888;
  display: block;
  margin-top: 5px;
}

.btn-calc {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #D4AF37, #AA771C);
  color: #000;
  font-family: 'Cinzel', serif;
  font-weight: 800;
  font-size: 1.4rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  margin-top: 30px;
  transition: 0.3s;
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
  letter-spacing: 1px;
}

.btn-calc:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
  background: linear-gradient(135deg, #FFD700, #C58F00);
}

.risk-badge {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 12px;
  font-weight: bold;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-top: 15px;
  border: 3px solid;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.risk-level-1 {
  background: rgba(0, 255, 65, 0.15);
  color: #00FF41;
  border-color: #00FF41;
}

.risk-level-2 {
  background: rgba(255, 255, 0, 0.15);
  color: #FFFF00;
  border-color: #FFFF00;
}

.risk-level-3 {
  background: rgba(255, 165, 0, 0.15);
  color: #FFA500;
  border-color: #FFA500;
}

.risk-level-4 {
  background: rgba(231, 76, 60, 0.15);
  color: #E74C3C;
  border-color: #E74C3C;
}

.risk-level-5 {
  background: rgba(255, 0, 0, 0.25);
  color: #FF0000;
  border-color: #FF0000;
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }

  100% {
    opacity: 1;
  }
}

.result-details {
  margin-top: 30px;
  padding: 30px;
  background: #121212;
  border-radius: 15px;
  border-left: 6px solid #D4AF37;
}

.result-details p {
  font-size: 1.2rem;
  margin: 12px 0;
}

#resDrawdown {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 15px 0;
  text-shadow: 0 0 10px rgba(231, 76, 60, 0.3);
}

.table-responsive {
  overflow-x: auto;
  margin-top: 40px;
  border-radius: 10px;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.1rem;
}

th {
  background: #252525;
  color: #D4AF37;
  padding: 20px 15px;
  text-align: center;
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  border-bottom: 3px solid #D4AF37;
  white-space: nowrap;
}

td {
  padding: 18px 15px;
  text-align: left;
  border-bottom: 1px solid #333;
  color: #ccc;
  font-weight: 500;
  font-size: large;
}

tr:nth-child(even) {
  background-color: #151515;
}

tr:hover td {
  background: rgba(212, 175, 55, 0.1);
  color: #fff;
}

@media (max-width: 600px) {
  h2 {
    font-size: 1.5rem;
  }

  .calc-card {
    padding: 20px;
  }

  input[type="number"] {
    font-size: 1.1rem;
  }

  .btn-calc {
    font-size: 1.1rem;
  }

  th,
  td {
    font-size: large;
    padding: 10px;
  }
}

.modal-body {
  height: 400px;
}

@media (max-width: 768px) {
  .modal-body {
    height: 300px;
  }
}

.modal-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: #1a1a1a;
  border: 1px solid #D4AF37;
  border-radius: 15px;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
  animation: modalFadeIn 0.3s;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  margin: 0;
  color: #fff;
}

.close-modal {
  color: #888;
  font-size: 28px;
  cursor: pointer;
  transition: 0.3s;
}

.close-modal:hover {
  color: #fff;
}

.modal-body {
  padding: 25px;
  overflow-y: auto;
  flex-grow: 1;
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
  background: #151515;
}

.modal-footer {
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  background: #1a1a1a;
  border-radius: 0 0 15px 15px;
}

.checkbox-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
  cursor: pointer;
  font-size: 1rem;
  color: #fff;
  user-select: none;
  text-align: left;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  background-color: #333;
  border: 1px solid #555;
  border-radius: 4px;
}

.checkbox-container:hover input~.checkmark {
  background-color: #444;
}

.checkbox-container input:checked~.checkmark {
  background-color: #00FF41;
  border-color: #00FF41;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid #000;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.checkbox-container input:checked~.checkmark:after {
  display: block;
}

.btn-disabled {
  background: #333;
  color: #777;
  padding: 12px 30px;
  border-radius: 50px;
  border: none;
  font-size: 1.1rem;
  cursor: not-allowed;
  width: 100%;
  max-width: 300px;
  transition: 0.3s;
}

.btn-active {
  background: linear-gradient(135deg, #00FF41, #00cc33);
  color: #000;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(0, 255, 65, 0.4);
  font-weight: bold;
}

.btn-active:hover {
  transform: scale(1.05);
}

.page {
  overflow: scroll;
}

@media (min-width: 768px) {

  h2,
  .h2 {
    line-height: 1.8;
  }
}

@media (min-width:1024px) {
  h3 {
    font-size: 1.9rem !important;
  }

  p,
  .p,
  .price-features>li,
  ol>li,
  .check-list {
    font-size: 1.9rem !important;
  }
}

h3 {
  font-size: 1.9rem !important;
}

p,
.p,
.price-features>li,
ul>li,
ol>li,
.check-list {
  font-size: 1.5rem;
  text-align: left;
}

@font-face {
  font-family: 'FontAwesome';
  src: url("../fonts/font-awesome-5-brands/fa-brands-400.eot?#iefix") format("embedded-opentype"),
    url("../fonts/font-awesome-5-brands/fa-brands-400.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

body {
  background-color: #0F0F0F;
  color: #EAEAEA;
  font-family: 'Prompt', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-image: radial-gradient(circle at 50% 50%, rgba(20, 20, 20, 0.8) 0%, #0F0F0F 100%);
  overflow-x: hidden;
  overflow-y: auto;
  height: auto;
  min-height: 100vh;
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3 {
  text-transform: none;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

ul {
  padding-left: 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-gold {
  color: #D4AF37;
  background: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.text-green {
  color: #00FF41;
}

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

.hero-logo-img {
  width: 100%;
  height: auto;
  margin-bottom: 25px;
  border-radius: 20px;
  border: 2px solid #D4AF37;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

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

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

.btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  margin: 10px;
}

.btn-gold {
  background: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
  color: #000;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.btn-green {
  background-color: transparent;
  border: 2px solid #00FF41;
  color: #00FF41;
}

.btn-green:hover {
  background-color: #00FF41;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
}

.hero {
  padding: 100px 0 120px 0;
  text-align: center;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.7) 0%, #0F0F0F 100%),
    url('https://source.unsplash.com/1600x900/?gold,technology,circuit');
  background-size: cover;
  background-position: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: #D4AF37;
}

.hero p {
  color: #B0B0B0;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.problems {
  padding: 80px 0;
  background-color: #141414;
}

.section-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 50px;
  color: #D4AF37;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.problem-card {
  background: #1a1a1a;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: 0.3s;
}

.problem-card:hover {
  border-color: #D4AF37;
  transform: translateY(-5px);
}

.problem-card i {
  font-size: 2.5rem;
  color: #D4AF37;
  margin-bottom: 20px;
}

.problem-card h3 {
  font-size: 1.3rem;
  color: #fff;
}

.problem-card p {
  color: #B0B0B0;
}

.features {
  padding: 80px 0;
  background-color: #121212;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  background: rgba(255, 255, 255, 0.02);
  padding: 30px;
  border-radius: 15px;
  border-left: 4px solid #D4AF37;
}

.feature-content {
  flex: 1;
  padding-right: 30px;
}

.feature-icon {
  font-size: 4rem;
  color: #00FF41;
  opacity: 0.8;
}

.feature-list li {
  margin-bottom: 10px;
  list-style: none;
  color: #EAEAEA;
}

.feature-list li::before {
  content: "✓";
  color: #00FF41;
  margin-right: 10px;
  font-weight: bold;
}

.pricing {
  padding: 80px 0;
  background: linear-gradient(to bottom, #0F0F0F, #1a1a1a);
  text-align: center;
}

.price-box {
  background: #1a1a1a;
  border: 2px solid #D4AF37;
  padding: 50px;
  border-radius: 20px;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
}

.badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background: #00FF41;
  color: #000;
  padding: 5px 15px;
  font-weight: bold;
  border-radius: 5px;
  text-transform: uppercase;
}

.price {
  font-size: 3.5rem;
  color: #D4AF37;
  margin: 20px 0;
}

.price-features {
  text-align: left;
  margin: 30px 0;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  padding: 20px 0;
}

.price-features li {
  margin-bottom: 15px;
  list-style: none;
  color: #EAEAEA;
}

.price-features i {
  color: #00FF41;
  margin-right: 10px;
}

.download-box {
  background: #222;
  padding: 20px;
  margin: 15px 0;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #444;
  transition: 0.3s;
}

.download-box:hover {
  border-color: #00FF41;
}

footer {
  background: #050505;
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid #222;
  font-size: 0.9rem;
  color: #666;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
  }

  .feature-content {
    padding-right: 0;
    margin-bottom: 20px;
  }

  .download-box {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .hero-logo-img {
    max-width: 100%;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.feature-card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #D4AF37;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #1a1a1a, #D4AF37, #1a1a1a);
  opacity: 0.5;
}

.card-icon {
  font-size: 2.5rem;
  color: #D4AF37;
  margin-bottom: 20px;
}

.card-content h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

.card-content p {
  color: #ccc;
  margin-bottom: 10px;
}

.highlight-text {
  color: #00FF41 !important;
  font-weight: bold;
  font-style: italic;
}

.detail-list {
  padding-left: 20px;
  margin-top: 10px;
}

.detail-list li {
  color: #ccc;
  margin-bottom: 8px;
  list-style-type: disc;
}

.detail-list li strong {
  color: #fff;
}

.sub-list {
  padding-left: 20px;
  margin-top: 5px;
  list-style-type: circle;
}

.sub-list li {
  color: #aaa;
}

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

.grid-highlight-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #0F0F0F 0%, #161616 100%);
  position: relative;
  overflow: hidden;
}

.grid-highlight-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.badge-gold {
  background: linear-gradient(135deg, #BF953F, #AA771C);
  color: #000;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.text-white {
  color: #fff;
}

.grid-system-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.grid-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
  transition: 0.3s;
  position: relative;
}

.grid-box:hover {
  border-color: #D4AF37;
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
}

.grid-box h4 {
  margin-top: 15px;
  margin-bottom: 15px;
  font-family: 'Prompt', sans-serif;
}

.grid-box p {
  color: #aaa;
  line-height: 1.6;
}

.box-icon {
  color: #D4AF37;
  margin-bottom: 10px;
}

.hero-box {
  border: 2px solid #D4AF37;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.05), rgba(0, 0, 0, 0.4));
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
}

.badge-killer {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #00FF41;
  color: #000;
  font-weight: bold;
  padding: 5px 15px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 255, 65, 0.4);
  text-transform: uppercase;
}

.comparison-table {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  padding: 15px;
  margin-top: 15px;
  border-left: 3px solid #00FF41;
}

.comp-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #EAEAEA;
}

.comp-row:last-child {
  border-bottom: none;
}

.comp-row strong {
  color: #00FF41;
}

.check-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.check-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #ccc;
}

.check-list li::before {
  content: '\f00c';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #D4AF37;
}

@media (max-width: 768px) {
  .grid-system-container {
    grid-template-columns: 1fr;
  }

  .hero-box {
    order: -1;
  }
}

.manual-section {
  padding: 80px 0;
  background-color: #121212;
  position: relative;
}

.manual-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(550px, 0.7fr));
  gap: 40px;
}

.manual-card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  position: relative;
  transition: 0.3s;
}

.manual-card:hover {
  border-color: #D4AF37;
  background: #202020;
  transform: translateY(-5px);
}

.step-badge {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #D4AF37, #AA771C);
  color: #000;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  border: 2px solid #1a1a1a;
}

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
}

.card-header i {
  margin-right: 10px;
}

.card-header h3 {
  margin: 0;
  color: #fff;
}

.manual-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.manual-list li {
  margin-bottom: 12px;
  color: #ccc;
  line-height: 1.5;
  border-left: 2px solid rgba(212, 175, 55, 0.2);
  padding-left: 10px;
}

.manual-list li strong {
  color: #EAEAEA;
  font-weight: 600;
}

.ui-mockup-row {
  background: #000;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 15px;
  display: flex;
  gap: 15px;
  color: #fff;
  border: 1px solid #333;
}

.center-items {
  justify-content: center;
}

.mock-btn {
  border: none;
  padding: 5px 15px;
  border-radius: 3px;
  font-weight: bold;
  cursor: default;
}

.btn-red {
  background: #E74C3C;
  color: #fff;
}

.btn-green {
  background: #00FF41;
  color: #000;
}

.btn-green-outline {
  border: 1px solid #00FF41;
  background: transparent;
  color: #00FF41;
}

.btn-red-outline {
  border: 1px solid #E74C3C;
  background: transparent;
  color: #E74C3C;
}

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

.dashboard-section {
  padding: 100px 0;
  background-color: #0F0F0F;
}

.dashboard-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.dash-visual {
  flex: 1;
  position: relative;
}

.monitor-frame {
  border: 2px solid #333;
  border-radius: 15px;
  padding: 10px;
  background: #1a1a1a;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

.monitor-frame:hover {
  border-color: #D4AF37;
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.2);
}

.dash-img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  display: block;
}

.dash-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.dash-item {
  display: flex;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.02);
  padding: 20px;
  border-radius: 12px;
  border-left: 3px solid transparent;
  transition: 0.3s;
}

.dash-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-left-color: #D4AF37;
  transform: translateX(10px);
}

.dash-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #D4AF37, #AA771C);
  color: #000;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.dash-text h3 {
  margin: 0 0 10px 0;
  font-size: 1.1rem;
  font-family: 'Prompt', sans-serif;
}

.dash-text p {
  margin: 0;
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .dashboard-layout {
    flex-direction: column;
  }

  .dash-visual {
    width: 100%;
    margin-bottom: 30px;
  }
}

.seo-promo-section {
  padding: 60px 0;
  background-color: #0F0F0F;
  display: flex;
  justify-content: center;
}

.promo-box {
  background: linear-gradient(145deg, #1a1a1a, #111);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  max-width: 900px;
  margin: 0 auto;
}

.promo-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transform: skewX(-25deg);
  animation: shine 6s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }

  20% {
    left: 200%;
  }

  100% {
    left: 200%;
  }
}

.promo-badge {
  display: inline-block;
  background: #E74C3C;
  color: #fff;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(231, 76, 60, 0.4);
  animation: bounce 2s infinite;
}

.promo-title {
  font-size: 2rem;
  color: #fff;
  margin: 0 0 5px 0;
  font-family: 'Prompt', sans-serif;
  font-weight: 600;
}

.promo-subtitle {
  font-size: 1.5rem;
  color: #888;
  margin: 0 0 20px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.promo-desc {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 30px;
}

.promo-tags {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.promo-tags span {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #D4AF37;
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-pulse {
  padding: 15px 40px;
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
}

.btn-pulse::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  border: 2px solid #00FF41;
  z-index: -1;
  animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

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

  60% {
    transform: translateY(-5px);
  }
}

@media (max-width: 768px) {
  .promo-title {
    font-size: 1.5rem;
  }

  .promo-subtitle {
    font-size: 1.2rem;
  }

  .promo-tags {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .promo-tags span {
    width: 100%;
    justify-content: center;
    max-width: 250px;
  }
}

.customize-section {
  padding: 60px 0;
  background-color: #0F0F0F;
  display: flex;
  justify-content: center;
}

.customize-wrapper {
  position: relative;
  background: #151515;
  padding: 40px 30px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  z-index: 1;
}

.customize-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(transparent, transparent, transparent, #D4AF37);
  animation: rotate-border 4s linear infinite;
  z-index: -2;
}

.customize-wrapper::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: #151515;
  border-radius: 18px;
  z-index: -1;
}

@keyframes rotate-border {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.float-icon-box {
  font-size: 3rem;
  color: #D4AF37;
  margin-bottom: 20px;
  animation: float-icon 3s ease-in-out infinite;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

@keyframes float-icon {

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

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

.cust-title {
  font-size: 2rem;
  color: #fff;
  margin: 0 0 10px 0;
  font-family: 'Prompt', sans-serif;
  font-weight: 600;
}

.text-gradient-gold {
  background: linear-gradient(to right, #D4AF37, #FBF5B7, #D4AF37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.cust-desc {
  color: #888;
  margin: 0 0 25px 0;
}

.cust-badge {
  background: rgba(0, 255, 65, 0.1);
  color: #00FF41;
  border: 1px solid rgba(0, 255, 65, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 15px rgba(0, 255, 65, 0.1);
}

@media (max-width: 768px) {
  .cust-title {
    font-size: 1.5rem;
  }
}

.install-section {
  padding: 80px 0;
  background-color: #121212;
}

.install-timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.install-card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px 30px 30px 50px;
  position: relative;
  transition: 0.3s;
}

.install-card:hover {
  border-color: #D4AF37;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.step-number {
  position: absolute;
  top: 25px;
  left: -20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #D4AF37, #AA771C);
  color: #000;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #121212;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.install-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 15px;
}

.install-header h3 {
  margin: 0;
  color: #fff;
  font-family: 'Prompt', sans-serif;
}

.install-content p,
.install-content li {
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 10px;
}

.install-content ol {
  padding-left: 20px;
}

.install-content strong {
  color: #fff;
}

.os-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.os-box {
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.os-box h4 {
  color: #D4AF37;
  margin-top: 0;
}

.note-text {
  font-size: 1rem !important;
  color: #888 !important;
  font-style: italic;
}

.highlight-card {
  border: 1px solid rgba(231, 76, 60, 0.3);
  background: linear-gradient(to right, #1a1a1a, rgba(231, 76, 60, 0.05));
}

.badge-alert {
  background: #E74C3C;
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 10px;
}

.code-box {
  background: #000;
  color: #00FF41;
  padding: 15px;
  border-radius: 5px;
  text-align: center;
  border: 1px dashed #333;
  margin: 15px 0;
  user-select: all;
}

.warning-text {
  color: #E74C3C !important;
  font-weight: bold;
}

.status-check {
  display: flex;
  gap: 20px;
  margin: 20px 0;
  background: rgba(0, 0, 0, 0.3);
  padding: 15px;
  border-radius: 10px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ccc;
}

.emoji {
  font-size: 1.5rem;
}

.img-placeholder {
  margin-top: 20px;
  text-align: center;
}

.img-placeholder img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid #333;
}

.img-caption {
  display: block;
  color: #666;
  margin-top: 8px;
}

.support-box {
  margin-top: 50px;
  padding: 30px;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

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

  .install-card {
    padding: 25px 20px;
    margin-top: 30px;
  }

  .step-number {
    left: 50%;
    transform: translateX(-50%);
    top: -25px;
  }

  .status-check {
    flex-direction: column;
    gap: 10px;
  }
}

.contact-section {
  padding: 80px 0;
  background-color: #0F0F0F;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.contact-card .icon-box {
  font-size: 3rem;
  margin-bottom: 10px;
  transition: 0.3s;
  color: #888;
}

.contact-card h3 {
  color: #fff;
  margin: 0;
  font-family: 'Prompt', sans-serif;
}

.contact-card p {
  color: #D4AF37;
  font-weight: bold;
  margin: 5px 0 15px 0;
}

.btn-text {
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s;
  border-bottom: 1px solid transparent;
}

.line-card:hover {
  border-color: #06C755;
  background: rgba(6, 199, 85, 0.05);
  transform: translateY(-5px);
}

.line-card:hover .icon-box {
  color: #06C755;
  transform: scale(1.1);
}

.line-card:hover .btn-text {
  color: #06C755;
  border-color: #06C755;
}

.messenger-card:hover {
  border-color: #0084FF;
  background: rgba(0, 132, 255, 0.05);
  transform: translateY(-5px);
}

.messenger-card:hover .icon-box {
  color: #0084FF;
  transform: scale(1.1);
}

.messenger-card:hover .btn-text {
  color: #0084FF;
  border-color: #0084FF;
}

.phone-card:hover {
  border-color: #D4AF37;
  background: rgba(212, 175, 55, 0.05);
  transform: translateY(-5px);
}

.phone-card:hover .icon-box {
  color: #D4AF37;
  transform: scale(1.1);
  rotate: -15deg;
}

.phone-card:hover .btn-text {
  color: #D4AF37;
  border-color: #D4AF37;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}

.legal-section {
  padding: 80px 0;
  background-color: #0F0F0F;
}

.legal-box {
  background: #151515;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 50px;
  border-radius: 15px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.legal-subtitle {
  font-family: 'Cinzel', serif;
  color: #888;
  font-size: 1.2rem;
  margin-top: -30px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.highlight-warning {
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.3);
  color: #E74C3C !important;
  padding: 15px;
  border-radius: 8px;
  display: inline-block;
  font-weight: bold;
  font-size: 1.3rem;
}

.legal-content {
  text-align: left;
  margin-top: 40px;
}

.legal-content h4 {
  color: #D4AF37;
  font-family: 'Prompt', sans-serif;
  margin-top: 30px;
  margin-bottom: 15px;
}

.legal-content p,
.legal-content li {
  color: #B0B0B0;
  line-height: 1.7;
  margin-bottom: 15px;
  text-align: justify;
}

.legal-content ul {
  padding-left: 20px;
  list-style: none;
}

.legal-content li {
  position: relative;
  padding-left: 15px;
}

.legal-content li::before {
  content: "•";
  color: #D4AF37;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.legal-content strong {
  color: #fff;
}

.legal-divider {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 30px 0;
}

@media (max-width: 768px) {
  .legal-box {
    padding: 30px 20px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .legal-subtitle {
    font-size: 1rem;
    margin-top: -20px;
  }
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  height: 100vh;
  background-color: #1a1a1a;
  border-right: 1px solid rgba(212, 175, 55, 0.2);
  overflow-y: auto;
  z-index: 1000;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

nav::-webkit-scrollbar {
  display: none;
}

.nav-container {
  display: flex;
  flex-direction: column;
  padding: 30px 20px;
  height: 100%;
  box-sizing: border-box;
}

.nav-container>a {
  text-decoration: none;
}

.logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  text-align: center;
}

.nav-logo-img {
  height: 60px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6));
  animation: pulse-gold 3s infinite;
}

.brand-main {
  font-size: 1.4rem;
  color: #fff;
  font-weight: bold;
}

.nav-scroll-wrapper {
  flex-grow: 1;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-links a {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #ccc;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 12px;
  transition: 0.3s;
  white-space: nowrap;
}

.nav-links a i {
  color: #D4AF37;
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-links a.nav-download {

  color: #00FF41;
}

.nav-links a.nav-download i {
  color: #00FF41;
}

.main-content {
  margin-left: 260px;
  min-height: 100vh;
  box-sizing: border-box;
  color: #EAEAEA;
}

@media (max-width: 900px) {
  nav {
    width: 80px;
  }

  .nav-container {
    padding: 20px 10px;
  }

  .logo-wrapper {
    margin-bottom: 30px;
  }

  .nav-logo-img {
    height: 40px;
    margin-bottom: 0;
  }

  .brand-text {
    display: inline-block;
  }

  .brand-text .text-gold {
    font-size: smaller;
  }

  .nav-links a {
    font-size: 0.8rem;
    padding: 12px;
    justify-content: center;
  }

  .nav-links a span {
    display: none;
  }

  .nav-links a i {
    margin: 0;
    font-size: 1.4rem;
  }

  .main-content {
    margin-left: 80px;
  }
}