@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&amp;display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* --- Brand Colors --- */
  --color-primary: #FF3A29;
  /* Your energetic red-orange */
  --color-secondary: #c64236;
  /* A cool, vibrant teal to complement the primary */
  --color-accent: #A755F8;
  /* A striking purple for special highlights */
  /* --- Neutral / UI Colors --- */
  --color-background: #100f0f;
  /* Main background */
  --color-surface-1: #2B2B2B;
  /* For elements on top of the background, like cards */
  --color-surface-2: #3C3C3C;
  /* For elevated elements, like modals or dropdowns */
  --color-border: #4D4D4D;
  /* For borders and dividers */
  /* --- Text Colors --- */
  --color-text-primary: #F5F5F5;
  /* For headings and important text */
  --color-text-secondary: #A0A0A0;
  /* For body copy and less important text */
  --color-text-disabled: #6C6C6C;
  /* For disabled states and placeholder text */
  /* --- Semantic / State Colors --- */
  --color-success: #10B981;
  /* For success messages, validation */
  --color-warning: #F59E0B;
  /* For warnings or notifications */
  --color-error: #EF4444;
  /* For error messages, danger actions */
  --color-info: #3B82F6;
  /* For informational tips and highlights */
  /* --- Shades for Interaction (Hover/Active) --- */
  --color-primary-light: #FF6B5C;
  /* A lighter shade of primary for hover */
  --color-primary-dark: #D92B1C;
  /* A darker shade of primary for active/pressed */
}

body {
  background-color: var(--color-background);
  color: var(--color-text-primary);
  font-family: "Roboto", sans-serif;
  font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-text-primary);
  font-weight: 600;
}

.header {
  position: absolute;
  top: 25px;
  width: 100%;
  z-index: 999;
  border-radius: 22px;
  padding: 10px;
}

.subtitle {
  position: relative;
  margin-top: 200px;
  padding: 12px 24px;
  border-radius: 50px;
  border: solid 1px var(--color-primary-light);
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  background-color: var(--color-primary);
  align-items: center;
  color: white !important;
  gap: 10px;
}
.subtitle p {
  color: white !important;
}
.subtitle span {
  background-color: #D92B1C;
  width: 25px;
  height: 25px;
  display: grid;
  place-content: center;
  color: white;
  font-weight: 700;
  border-radius: 50%;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.hero .social {
  position: absolute;
  right: 5px;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero .social a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: ease 0.3s;
}
.hero .social a:hover {
  color: var(--color-text-primary);
}
.hero h1 {
  font-size: 65px;
  font-weight: 600;
}
.hero p {
  color: var(--color-text-secondary);
}
.hero .gradient-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -2;
  width: 100%;
}
.hero .bottom-bg {
  position: absolute;
  bottom: -120px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
}
.hero .lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
}
.hero .bg-element {
  position: absolute;
  top: 25px;
  left: 0;
  right: 0;
  width: 99%;
  margin: 0 auto;
  z-index: 0;
}
.hero .sparcles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  z-index: -2;
  opacity: 0.2;
}
.hero .slider-container-js {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  overflow: hidden;
  z-index: 10;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.hero .slider-js {
  display: flex;
  gap: 20px;
  padding: 10px 0;
  white-space: nowrap;
  animation: scroll-jump 25s linear infinite;
}
.hero .slider-container-js:hover .slider-js {
  animation-play-state: paused;
}
@keyframes scroll-jump {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.hero .slider-js .livecoinwatch-widget-1 {
  min-width: 350px;
  max-height: 170px;
}

.dropdown-menu {
  background-color: #171717 !important;
  color: #ffffff !important;
  border: solid 0.5px white;
}

.dropdown-item {
  color: #ffffff !important;
}
.dropdown-item:hover {
  color: #EF4444 !important;
}

.dash {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.btn {
  border: none;
  padding: 16px 32px;
  border-radius: unset !important;
  font-weight: bold;
  color: var(--color-text-primary);
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  display: flex;
  align-items: center;
  gap: 5px;
  -webkit-clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
          clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
}

.btn-primary {
  background-color: var(--color-primary);
   -webkit-clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
          clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
}

.btn-primary:hover {
  background-color: var(--color-primary-light);
}

.btn-primary:active {
  background-color: var(--color-primary-dark);
}

.btn-secondary:active {
  background-color: var(--color-primary-dark);
}

.navbar-nav .nav-item {
  margin: 0 15px;
}
.navbar-nav .nav-link {
  color: var(--color-text-secondary);
  font-weight: 500;
  font-size: 16px;
  transition: color 0.2s ease-in-out;
  padding: 0.5rem 1rem;
}
.navbar-nav .nav-link:hover {
  color: var(--color-text-primary);
}
.navbar-nav .nav-link.active {
  color: var(--color-text-primary);
  font-weight: bold;
}
.navbar-nav .nav-link.disabled {
  color: var(--color-text-disabled);
}

.dropdown-menu {
  background-color: var(--color-surface-2);
  border: 1px solid var(--color-border);
}
.dropdown-menu .dropdown-item {
  color: var(--color-text-secondary);
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}
.dropdown-menu .dropdown-item:hover {
  background-color: var(--color-surface-1);
  color: var(--color-text-primary);
}

.vision-section {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.ab-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.vision-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin: 0;
  color: var(--text-primary);
}

.vision-intro {
  text-align: left;
}

@media (min-width: 992px) {
  .vision-intro {
    text-align: right;
  }
}
.vision-nav {
  display: flex;
  justify-content: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

@media (min-width: 992px) {
  .vision-nav {
    justify-content: flex-end;
  }
}
.vision-nav button {
  background-color: var(--color-primary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.2s;
}

.vision-nav button:hover {
  background-color: var(--border-color);
}

.vision-intro p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.card {
  background-color: #1a1a1a;
  border-radius: 20px;
  padding: 2rem;
  border: none;
}
.card .card-header {
  border: none !important;
}

.card-secondary {
  background-color: transparent;
  border-radius: 20px;
  padding: 2rem;
  border: solid 0.5px var(--color-primary);
}

.benefits-card h3 {
  margin-top: 0;
  font-size: 1.1rem;
  font-weight: 400;
}

.benefits-card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.benefits-card li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--color-text-primary);
}

.benefits-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 5px;
  height: 5px;
  background-color: var(--color-text-primary);
  border-radius: 50%;
}

.stats-area {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.percentage {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--text-primary);
}

.label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

.text-block {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.4;
  color: var(--text-primary);
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tag {
  background: transparent;
  border: 1px solid var(--color-primary);
  color: var(--text-secondary);
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s;
}

.tag:hover {
  border-color: var(--text-secondary);
  color: var(--text-primary);
}

.faq-section {
  position: relative;
  padding: 1rem 0;
}

.faq-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.section-title {
  font-family: "Audiowide", sans-serif;
  color: var(--color-text-primary);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2509803922), 0 -1px 0 rgba(0, 0, 0, 0.2509803922);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  margin-bottom: 3rem;
  line-height: 1.2;
}

.faq-nav {
  margin-bottom: 3.5rem;
  --bs-nav-pills-border-radius: 0.75rem;
  --bs-nav-link-padding-x: 1.5rem;
  --bs-nav-link-padding-y: 0.6rem;
}

.faq-nav .nav-link {
  color: var(--color-text-secondary);
  background-color: transparent;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.faq-nav .nav-link:hover {
  color: var(--color-text-primary);
}

.faq-nav .nav-link.active {
  color: var(--color-text-primary);
  background-color: var(--color-surface-1);
}

.tab-content {
  min-height: 300px;
}

.accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: transparent;
  --bs-accordion-border-width: 0;
  --bs-accordion-btn-color: var(--color-text-primary);
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23a0a0a0'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f5f5f5'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-active-color: var(--color-text-primary);
  --bs-accordion-active-bg: var(--color-surface-1);
  --bs-accordion-body-padding-y: 1.5rem;
  --bs-accordion-body-padding-x: 1.5rem;
}

.accordion-item {
  background-color: var(--color-surface-1);
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.accordion-button {
  font-weight: 500;
  border-radius: 1rem;
}

.accordion-button:not(.collapsed) {
  box-shadow: none;
}

.accordion-body {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.stats {
  padding: 5rem 0 0 0;
}

.stat-card {
  position: relative;
  --r: 20px;
  --s: 30px;
  --x: 20px;
  --y: 10px;
  width: 100%;
  height: auto;
  padding-bottom: 1em;
  padding-top: 1em;
  z-index: 0;
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-surface-1);
  border-radius: var(--r);
  box-shadow: rgba(255, 255, 255, 0.875) 0px 6px 12px -2px, rgba(248, 248, 248, 0.801) 0px 3px 7px -3px;
  --_m: /calc(2*var(--r)) calc(2*var(--r)) radial-gradient(#000 70%, #0000 72%);
  --_g: conic-gradient(at var(--r) var(--r), #000 75%, #0000 0);
  --_d: (var(--s) + var(--r));
  -webkit-mask: calc(var(--_d) + var(--x)) 0 var(--_m), 0 calc(var(--_d) + var(--y)) var(--_m), radial-gradient(var(--s) at 0 0, rgba(0, 0, 0, 0) 99%, #000 calc(100% + 1px)) calc(var(--r) + var(--x)) calc(var(--r) + var(--y)), var(--_g) calc(var(--_d) + var(--x)) 0, var(--_g) 0 calc(var(--_d) + var(--y));
          mask: calc(var(--_d) + var(--x)) 0 var(--_m), 0 calc(var(--_d) + var(--y)) var(--_m), radial-gradient(var(--s) at 0 0, rgba(0, 0, 0, 0) 99%, #000 calc(100% + 1px)) calc(var(--r) + var(--x)) calc(var(--r) + var(--y)), var(--_g) calc(var(--_d) + var(--x)) 0, var(--_g) 0 calc(var(--_d) + var(--y));
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  z-index: -1;
}

.stat-card .img-icon {
  position: absolute;
  top: 0;
  left: 10px;
  width: 45px;
  height: 45px;
  background-color: var(--color-surface-1);
  border: solid 0.5px var(--color-primary);
  border-radius: 50%;
  z-index: 9999;
}

.stat-card .img-icon .icon-img {
  max-width: 100%;
}

.testimonials-section {
  padding: 5rem 0;
  overflow: hidden;
}

.tag {
  display: inline-block;
  background-color: var(--color-secondary);
  color: var(--color-text-primary);
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  margin-bottom: 3rem;
}

.sliders-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.slider-container {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.slider {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  gap: 1.5rem;
  padding-block: 0.5rem;
}

.slider-left {
  animation: scroll-left 60s linear infinite;
}

.slider-right {
  animation: scroll-right 60s linear infinite;
}

.slider-container:hover .slider {
  animation-play-state: paused;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes scroll-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
.testimonial-card {
  background-color: var(--color-surface-1);
  border: 2px solid transparent;
  border-radius: 1.25rem;
  padding: 2rem;
  width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-card.highlight {
  border-color: var(--color-primary);
}

.testimonial-card p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-surface-2);
      display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.avatar img {
  width: 100px;
  height: 100px;
  object-fit: cover;

}

.author-info strong {
  display: block;
  color: var(--color-text-primary);
  font-weight: 600;
}

.author-info span {
  color: var(--color-text-secondary);
  font-size: 0.85rem;
}

.cta {
  padding: 10rem 0;
  position: relative;
  display: flex;
  flex-direction: column;
  background-image: url(../assets/images/cta-background.svg);
  background-position: center;
  background-position-y: -50px;
  background-size: cover;
  background-repeat: no-repeat;
}
.cta a {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.site-footer {
  background-color: #121212;
  border-top: 1px solid var(--color-surface-2);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

.footer-logo:hover {
  color: var(--color-text-primary);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: white;
}

.footer-widget h5 {
  color: var(--color-text-primary);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.footer-widget p {
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.footer-links a:hover {
  color: var(--color-text-primary);
}

.subscribe-form .input-group {
  position: relative;
}

.subscribe-form .form-control {
  background-color: var(--color-surface-1);
  border: 1px solid var(--color-border);
  border-radius: 50px;
  height: 50px;
  padding: 0.5rem 65px 0.5rem 1.25rem;
  color: var(--color-text-primary);
  font-size: 0.9rem;
}

.subscribe-form .form-control:focus {
  background-color: var(--color-surface-1);
  color: var(--color-text-primary);
  border-color: var(--color-primary);
  box-shadow: none;
}

.subscribe-form .form-control::-moz-placeholder {
  color: var(--color-text-disabled);
}

.subscribe-form .form-control::placeholder {
  color: var(--color-text-disabled);
}

.subscribe-form .btn-submit {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background-color: var(--color-primary);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background-color 0.2s ease-in-out;
}

.subscribe-form .btn-submit:hover {
  background-color: #D92B1C;
  /* --color-primary-dark */
}

.footer-bottom {
  padding-bottom: 2rem;
}

.footer-bottom hr {
  border-color: var(--color-surface-2);
  margin-bottom: 2rem;
}

.footer-bottom p {
  font-size: 0.85rem;
}

.partners-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.partners-section-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.partner-slider-container {
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.partner-slider-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: -moz-max-content;
  width: max-content;
  animation: scroll-partners 40s linear infinite;
}

.partner-slider-container:hover .partner-slider-track {
  animation-play-state: paused;
}

@keyframes scroll-partners {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.partner-card {
  background-color: var(--color-surface-1, #2B2B2B);
  border: 1px solid var(--color-border, #4D4D4D);
  border-radius: 1rem;
  height: 120px;
  width: 220px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.partner-card img {
  max-width: 80%;
  max-height: 50px;
  filter: grayscale(100%) brightness(0.7);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.partner-card:hover {
  border-color: var(--color-text-secondary, #A0A0A0);
  transform: translateY(-5px);
}

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

.tooltip {
  --bs-tooltip-bg: var(--color-primary);
  --bs-tooltip-color: white;
  --bs-tooltip-opacity: 1;
  --bs-tooltip-padding-y: 0.5rem;
  --bs-tooltip-padding-x: 1rem;
  --bs-tooltip-font-size: 0.85rem;
  --bs-tooltip-border-radius: 0.5rem;
}

.community-section {
  padding: 5rem 0;
}

.community-wrapper {
  color: var(--color-text-dark);
  border-radius: 1.5rem;
  overflow: hidden;
  border: solid 0.5px var(--color-border);
}

.community-info {
  padding: 3rem;
}

.pre-title {
  color: var(--color-text-secondary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.community-info h2 {
  font-weight: 800;
  font-size: 2.25rem;
  color: var(--color-text-ghost);
}

.social-footer {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-footer a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: ease 0.3s;
}
.social-footer a:hover {
  color: var(--color-text-primary);
}

.protect {
  position: relative;
  max-width: 250px;
  height: auto;
  align-items: center;
  gap: 5px;
}
.protect img {
  max-width: 45px;
  max-height: 45px;
}

.page-header {
  position: relative;
  width: 100%;
  height: auto;
  padding: 210px 0;
  background-image: url(../assets/images/page-header-bg.png);
  background-size: cover;
  background-position: center;
}
.page-header h2 {
  font-size: 45px;
}

.plans-section {
  background-color: #121212;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 20px 20px;
  padding: 80px 0;
  color: #ffffff;
}

.plan-card {
  background-color: #1A1A1A;
  border: 1px solid #333;
  border-radius: 15px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
}

.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-color: var(--color-primary);
}

.plan-header {
  margin-bottom: 1.5rem;
}

.plan-rate {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
}

.rate-period {
  font-size: 1rem;
  font-weight: 400;
  color: #ccc;
  margin-left: 0.25rem;
}

.plan-duration {
  color: #adb5bd;
  font-size: 0.9rem;
}

.investment-range {
  background-color: #222;
  border: 1px dashed #444;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.investment-range span {
  display: block;
  font-size: 0.8rem;
  color: #adb5bd;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.investment-range strong {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
}

.btn-plan {
  background-color: #333;
  color: #fff;
  border: 2px solid #444;
  font-weight: 600;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-align: center;
  justify-content: center;
}

.btn-plan:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

/* Highlighted Plan Styles */
.plan-highlighted {
  border-width: 2px;
  border-color: var(--color-primary);
  transform: scale(1.05);
  z-index: 10;
}

.plan-highlighted .btn-plan {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #121212;
}

.badge-popular {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-primary);
  color: #121212;
  font-weight: 700;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  text-transform: uppercase;
}

/* Coming Soon Plan */
.plan-coming-soon {
  overflow: hidden;
  filter: grayscale(50%);
}

.coming-soon-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 26, 0.8);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ccc;
  text-align: center;
}

/* General Terms Section */
.general-terms {
  border-top: 1px solid #333;
  margin-top: 4rem;
  padding-top: 3rem;
  color: #adb5bd;
}

.general-terms h6 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 1rem;
}

.terms-list {
  list-style: none;
  padding: 0;
}

.terms-list li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.terms-list i {
  color: var(--color-primary);
  margin-top: 4px;
}

.min-withdrawal-list span {
  color: #fff;
  font-weight: 600;
  width: 30px;
  display: inline-block;
}

.currency-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.currency-list span {
  background-color: #222;
  padding: 0.25rem 0.75rem;
  border-radius: 5px;
  font-size: 0.85rem;
}

/* Responsive adjustments */
@media (max-width: 1199.98px) {
  .plan-highlighted {
    transform: scale(1);
  }
}
@media (max-width: 991.98px) {
  .plan-highlighted {
    transform: scale(1.02);
  }
}
.calculator-section {
  padding: 5rem 0;
  background-image: url(../assets/images/faq-bg.png);
  background-position: center;
  background-size: cover;
  color: var(--color-text-primary);
}

.pre-title {
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.calculator-features {
  padding-left: 0;
}

.calculator-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  color: var(--color-text-secondary);
}

.calculator-features i {
  color: var(--color-primary);
  font-size: 1.25rem;
}

.calculator-card {
  background: linear-gradient(145deg, #1f1f22, rgba(255, 0, 0, 0.2392156863));
  border: 1px solid var(--border-color);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
}

.form-label {
  font-weight: 600;
  color: var(--color-text-secondary);
}

/* --- Custom Form Control Styles (re-using from previous steps) --- */
.form-control, .form-select, .input-group-text {
  background-color: var(--page-bg);
  border: 1px solid var(--border-color);
  color: var(--color-text-primary);
  border-radius: 0.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23a0a0a0' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.form-control:focus, .form-select:focus {
  background-color: var(--page-bg);
  color: var(--color-text-primary);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px var(--accent-glow);
}

.input-group-text {
  border-right: none;
  font-weight: 600;
}

#investment-amount {
  border-left: none;
}

/*
 * ==========================================================
 *  ADVANCED CUSTOM RANGE SLIDER
 * ==========================================================
*/
/* --- Base Reset and Sizing --- */
/* This removes the default browser styling so we can build our own. */
.form-range {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 100%;
  height: 20px; /* The total height for the thumb to move in */
  background: transparent; /* We will style the track separately */
  cursor: pointer;
  padding: 0; /* Override Bootstrap padding */
}

/*
 * --- The Track (the bar it slides on) ---
 * We need to style this for both WebKit (Chrome, Safari) and Mozilla (Firefox)
*/
/* WebKit Track */
.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  background: var(--border-color);
  border-radius: 10px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.4); /* Inner shadow for depth */
}

/* Mozilla Track */
.form-range::-moz-range-track {
  width: 100%;
  height: 6px;
  background: var(--border-color);
  border-radius: 10px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.4);
}

/*
 * --- The Thumb (the handle you drag) ---
 * This is the most important part for visual appeal.
*/
/* WebKit Thumb */
.form-range::-webkit-slider-thumb {
  -webkit-appearance: none; /* Essential reset */
  margin-top: -7px; /* Centers the thumb on the track. (thumb_height - track_height) / -2 */
  width: 20px;
  height: 20px;
  background: var(--color-primary);
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 0 15px var(--accent-glow);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

/* Mozilla Thumb */
.form-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: var(--color-primary);
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 0 15px var(--accent-glow);
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

/*
 * --- Hover & Active States for a premium feel ---
*/
/* WebKit Hover/Focus States */
.form-range:focus::-webkit-slider-thumb,
.form-range::-webkit-slider-thumb:hover {
  box-shadow: 0 0 25px var(--accent-glow); /* Intensify the glow on hover/focus */
}

.form-range:active::-webkit-slider-thumb {
  transform: scale(1.1); /* Make it slightly bigger when dragging */
  background-color: var(--color-secondary-brand, #D92B1C);
}

/* Mozilla Hover/Focus States */
.form-range:focus::-moz-range-thumb,
.form-range::-moz-range-thumb:hover {
  box-shadow: 0 0 25px var(--accent-glow);
}

.form-range:active::-moz-range-thumb {
  transform: scale(1.1);
  background-color: var(--color-secondary-brand, #D92B1C);
}

/* --- Results Area --- */
.calculator-results {
  border-top: 1px solid var(--border-color);
  margin-top: 2rem;
  padding-top: 2rem;
}

.result-item {
  padding-bottom: 1.5rem;
}

.result-label {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin-bottom: 0.25rem;
}

.result-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

.section-pad {
  padding: 6rem 0;
}

.pre-title {
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.btn-brand {
  background-color: var(--color-primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: -moz-fit-content;
  width: fit-content;
}

.btn-brand:hover {
  background-color: var(--color-secondary-brand);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px var(--accent-glow);
}

.video-card {
  position: relative;
  border: 2px solid var(--border-color);
  border-radius: 1.5rem;
  padding: 1rem;
  background: linear-gradient(145deg, var(--card-bg), #222325);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
}

.video-card img {
  border-radius: 1rem;
}

.coming-soon-tag {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  color: var(--color-primary);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stride-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 1.25rem;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
}

.stride-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
  box-shadow: 0 10px 30px var(--accent-glow);
}

.stride-pill {
  display: inline-block;
  background-color: rgba(255, 58, 41, 0.1);
  color: var(--color-primary);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  width: -moz-fit-content;
  width: fit-content;
}

.accordion {
  --bs-accordion-bg: var(--card-bg);
  --bs-accordion-color: var(--color-text-primary);
  --bs-accordion-border-color: var(--border-color);
  --bs-accordion-border-radius: 1rem;
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem var(--accent-glow);
  --bs-accordion-active-color: var(--color-primary);
  --bs-accordion-active-bg: var(--card-bg);
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23a0a0a0'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff3a29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.roadmap-container {
  position: relative;
}

.roadmap-line {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--border-color);
  display: none;
}

@media (min-width: 768px) {
  .roadmap-line {
    display: block;
  }
}
.roadmap-item {
  position: relative;
  padding-top: 30px;
}

.roadmap-dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: var(--card-bg);
  border: 3px solid var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--accent-glow);
}

.roadmap-date {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}

.roadmap-title {
  color: var(--color-primary);
  font-weight: 600;
}

.team-member-img {
  border-radius: 1.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.carousel-indicators {
  position: static;
  margin-top: 2rem;
}

.carousel-indicators button {
  width: 60px;
  height: 60px;
  border-radius: 0.75rem;
  overflow: hidden;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  border: 2px solid transparent;
}

.carousel-indicators button.active {
  opacity: 1;
  border-color: var(--color-primary);
}

.security-title {
  font-weight: 700;
  font-size: 2rem;
  color: var(--color-primary);
}

.security-icon {
  font-size: 8rem;
  color: var(--color-primary);
  text-shadow: 0 0 40px var(--accent-glow);
}

.social-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--color-text-dark);
}

.social-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.75rem;
  color: white;
}

.social-text span {
  display: block;
  color: var(--color-text-secondary);
  font-size: 0.85rem;
}

.social-text strong {
  color: var(--color-text-ghost);
  font-size: 1rem;
  font-weight: 700;
}

.icon-telegram {
  background-color: #24A1DE;
}

.icon-facebook {
  background-color: #1877F2;
}

.icon-youtube {
  background-color: #FF0000;
}

.icon-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #bc1888);
}

.icon-twitter {
  background-color: #000000;
}

.discord-side {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  text-align: right;
  border-left: 1px solid var(--color-border);
}

.discord-side h3 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-text-ghost);
}

.social-img-pl {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width:100%;
  height:100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.login-wrapper {
  min-height: 100vh;
  width: 100%;
}

.login-promo-panel {
  position: relative;
  background: radial-gradient(circle at 30% 30%, var(--accent-glow), var(--page-bg) 60%);
  position: relative;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.login-promo-panel .promo-graphic {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.login-logo {
  position: relative;
  z-index: 1;
}

.login-logo img {
  height: 40px;
}

.promo-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.promo-graphic {
  max-width: 80%;
  margin-bottom: 2rem;
}

.promo-title {
  color: white;
  font-weight: 700;
  font-size: 2.5rem;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.login-form-panel {
  background-color: var(--page-bg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.form-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.back-link,
.lang-switcher {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-weight: 500;
  background: none;
  border: none;
}

.back-link:hover,
.lang-switcher:hover {
  color: white;
}

.form-container {
  background-color: #1A1A1A;
  margin: auto 0;
  width: 100%;
  max-width: 650px;
  padding: 3rem;
  border-radius: 22px;
}

.form-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: white;
}

.form-label {
  color: var(--color-text-primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.form-label .text-danger {
  color: var(--color-primary) !important;
}

/* --- Common styling for all form fields --- */
.form-control,
.form-select {
  background-color: var(--card-bg, #1a1b1d);
  border: 1px solid var(--border-color, #2c2d2f);
  color: var(--color-text-primary);
  border-radius: 0.75rem;
  /* 12px */
  padding: 0.8rem 1.25rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* --- Focus State --- */
.form-control:focus,
.form-select:focus {
  background-color: var(--card-bg, #1a1b1d);
  color: var(--color-text-primary);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px var(--accent-glow, rgba(255, 58, 41, 0.25));
}

/* --- Placeholder Text Styling --- */
.form-control::-moz-placeholder {
  color: var(--color-text-secondary);
  opacity: 0.7;
}
.form-control::placeholder {
  color: var(--color-text-secondary);
  opacity: 0.7;
}

/* --- Textarea Specifics --- */
.form-control.textarea {
  min-height: 150px;
  resize: vertical;
}

/* --- Select Dropdown Customization --- */
.form-select {
  /* Custom arrow icon using an inline SVG */
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23a0a0a0' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

/* Style for the 'placeholder' option in the select dropdown */
.form-select:invalid {
  color: var(--color-text-secondary);
  opacity: 0.7;
}

.form-select option {
  background-color: var(--card-bg, #1a1b1d);
  color: var(--color-text-primary);
}

.input-group .form-control {
  border-right: 0;
}

.input-group .form-control:focus {
  z-index: 3;
}

.password-toggle-btn {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-left: 0;
  color: var(--color-text-secondary);
}

.forgot-password-link,
.form-container a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}

.forgot-password-link:hover,
.form-container a:hover {
  text-decoration: underline;
}

.form-check-input {
  border-radius: 0.3rem;
  background-color: var(--card-bg);
  border-color: var(--border-color);
}

.form-check-input:checked {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.form-check-input:focus {
  box-shadow: 0 0 0 4px var(--accent-glow);
}

.btn-brand {
  background: linear-gradient(90deg, var(--color-secondary-brand), var(--color-primary));
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 5px 20px var(--accent-glow);
}

.btn-brand:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--accent-glow);
}

.form-panel-footer {
  text-align: center;
  font-size: 0.9rem;
}

@media (max-width: 991.98px) {
  .login-promo-panel {
    display: none;
    /* Hide the promo panel on mobile */
  }
  .login-form-panel {
    padding: 1.5rem;
  }
}
@media (max-width: 991.98px) {
  .discord-side {
    border-left: none;
    border-top: 1px solid var(--color-border);
    min-height: 200px;
    align-items: flex-start;
    text-align: left;
  }
}
.partners {
  position: relative;
  padding: 5rem 0;
}

table,
.table,
th,
tr,
td {
  background-color: transparent !important;
  color: white !important;
}

.contact-section {
  padding: 5rem 0;
  color: var(--color-text-primary);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: var(--color-surface-1, #2B2B2B);
  border: 1px solid var(--border-color, #4D4D4D);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-primary);
  font-size: 1.5rem;
}

.contact-detail span {
  display: block;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}

.contact-detail a,
.contact-detail strong {
  color: var(--color-text-primary);
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
}

.contact-detail a:hover {
  color: var(--color-primary);
}

/* --- Map Placeholder --- */
.map-container {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
}

.map-placeholder {
  width: 100%;
  height: auto;
  display: block;
  background-color: #6c757d;
  /* Placeholder color */
  filter: brightness(0.7);
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  pointer-events: none;
  /* Allows clicks to go "through" the overlay */
}

.map-overlay > * {
  pointer-events: all;
  /* Makes only the direct children clickable */
}

.map-controls-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.map-tab,
.map-search {
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  color: #333;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.map-zoom {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  overflow: hidden;
}

.map-zoom button {
  background: none;
  border: none;
  color: #333;
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  line-height: 1;
}

.map-zoom button:first-child {
  border-bottom: 1px solid #ddd;
}

/* --- Form Wrapper --- */
.contact-form-wrapper {
  background-color: var(--card-bg, #1a1b1d);
  padding: 2.5rem;
  border-radius: 1.25rem;
  height: 100%;
}

@media (max-width: 576px) {
  .contact-form-wrapper {
    padding: 1.5rem;
  }
}
.technology {
  position: relative;
  padding: 5rem 0;
}

.process-section {
  padding: 5rem 0;
  background-color: var(--page-bg, #0d0f10);
  color: var(--color-text-primary);
}

.process-card {
  background-color: rgba(26, 27, 29, 0.5); /* Semi-transparent card background */
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: 1.25rem;
  padding: 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

.process-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--accent-glow);
}

.process-number-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.process-line {
  width: 4px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-primary), var(--accent-glow));
  border-radius: 4px;
  box-shadow: 0 0 15px var(--accent-glow);
}

.process-number {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-primary);
  text-shadow: 0 0 10px var(--accent-glow);
}

.process-text p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

.process-text strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .process-card {
    padding: 1.5rem;
    gap: 1rem;
  }
  .process-number {
    font-size: 1.75rem;
  }
  .process-line {
    height: 35px;
  }
}
.data-analysis-section {
  padding: 5rem 0;
  position: relative;
  background-color: var(--page-bg);
  color: var(--color-text-primary);
  /* Subtle grid background */
  background-image: linear-gradient(rgba(44, 45, 47, 0.5) 1px, transparent 1px), linear-gradient(to right, rgba(44, 45, 47, 0.5) 1px, transparent 1px);
  background-size: 3rem 3rem;
}

.pre-title {
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.analysis-card {
  background-color: rgba(26, 27, 29, 0.6);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-left: none; /* The border is handled by the .row parent */
  height: 100%;
  display: flex;
  flex-direction: column;
}

.data-analysis-section .row {
  border: 1px solid var(--border-color);
  border-radius: 1.5rem;
  overflow: hidden;
}

@media (min-width: 992px) {
  .analysis-card:not(:first-child) {
    border-left: 1px solid var(--border-color);
  }
}
@media (max-width: 991.98px) {
  .analysis-card:not(:first-child) {
    border-top: 1px solid var(--border-color);
  }
}
.card-icon-area {
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-bottom: 1px solid var(--border-color);
}

.card-text-area {
  padding: 2rem;
  flex-grow: 1;
}

.card-text-area h4 {
  color: var(--color-text-primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.card-text-area p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- Icon Group Styles --- */
.icon-group, .icon-group-wired, .icon-group-circular {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(44, 45, 47, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.75rem;
  color: var(--color-text-secondary);
  transition: all 0.3s ease;
}

.feature-icon.active {
  background-color: rgba(255, 58, 41, 0.1);
  border-color: var(--color-primary);
  color: var(--color-primary);
  box-shadow: 0 0 25px var(--accent-glow);
  transform: scale(1.1);
}

/* --- Wired Icon Styles --- */
.icon-group-wired .feature-icon.active {
  border-radius: 1rem;
}

.wire {
  height: 2px;
  width: 60px;
  background: linear-gradient(to right, transparent, var(--color-primary), transparent);
  box-shadow: 0 0 10px var(--accent-glow);
}

/* --- Circular Icon Styles --- */
.icon-group-circular {
  position: relative;
}

.icon-group-circular .feature-icon.active {
  border-radius: 50%;
  width: 70px;
  height: 70px;
  font-size: 2rem;
}

.icon-group-circular::before,
.icon-group-circular::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
}

.icon-group-circular::before {
  width: 110px;
  height: 110px;
  border: 1px solid var(--border-color);
}

.icon-group-circular::after {
  width: 150px;
  height: 150px;
  border: 1px solid rgba(44, 45, 47, 0.5);
}

.info-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 1.25rem;
  padding: 1.5rem;
  height: 100%;
  text-align: center;
}

.info-card img {
  max-height: 80px;
  margin-bottom: 1rem;
}

.info-card p {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}

.info-card strong {
  color: var(--color-text-primary);
}

/* --- Fees Section --- */
.fee-card {
  background: rgba(26, 27, 29, 0.7);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 1.5rem;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.fee-card-bg {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  opacity: 0.1;
  filter: blur(30px);
  pointer-events: none;
  z-index: 0;
}

.fee-card-content {
  position: relative;
  z-index: 1;
}

.fee-item {
  padding: 1rem 0;
}

.fee-item h6 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.fee-item span {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}

.fee-item p {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}

.fee-card hr {
  border-color: var(--border-color);
  margin: 1rem 0;
}

.fee-category-title {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.commission-tag {
  background-color: var(--color-primary);
  color: white;
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 5px;
  margin-left: 0.5rem;
  vertical-align: middle;
}

/* --- Staking Callout --- */
.staking-callout {
  background: radial-gradient(circle at 50% 50%, var(--accent-glow), transparent 60%);
}

.amount-display {
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 800;
  color: #ffd700; /* Gold color */
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
  margin: 1rem 0;
}

.benefit-icon-wrapper {
  width: 80px;
  height: 80px;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  color: var(--color-primary);
  margin: 0 auto 1rem;
  box-shadow: 0 0 20px var(--accent-glow);
}

.benefit-icon-wrapper + h6 {
  font-weight: 600;
}

/* --- Final CTA & Partners --- */
.btn-brand {
  background-color: var(--color-primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}

.btn-brand:hover {
  background-color: var(--color-secondary-brand);
  transform: scale(1.05);
}

.partner-slider-container {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partner-slider {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  gap: 4rem;
  animation: scroll-partners 40s linear infinite;
}

@keyframes scroll-partners {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.partner-card {
  height: 80px;
  filter: grayscale(1) brightness(0.8);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.partner-card:hover {
  filter: none;
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .fee-card {
    padding: 1.5rem;
  }
  .fee-item {
    text-align: left;
  }
  .fee-item p {
    font-size: 1.1rem;
  }
}
@media only screen and (max-width: 1400px) {
  .subtitle {
    position: relative;
    margin-top: 150px;
    padding: 12px 24px;
    border-radius: 50px;
    border: solid 1px var(--color-primary-light);
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    background-color: var(--color-primary);
    align-items: center;
    color: white !important;
    gap: 10px;
  }
  .subtitle span {
    background-color: #D92B1C;
    width: 25px;
    height: 25px;
    display: grid;
    place-content: center;
    color: white;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50%;
  }
  .hero {
    position: relative;
    width: 100%;
    height: 120vh;
    overflow: hidden;
  }
  .hero .social {
    position: absolute;
    right: 5px;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .hero .social a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: ease 0.3s;
  }
  .hero .social a:hover {
    color: var(--color-text-primary);
  }
  .hero h1 {
    font-size: 45px;
    font-weight: 600;
  }
  .hero p {
    color: var(--color-text-secondary);
  }
  .hero .gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: -2;
    width: 100%;
  }
  .hero .bottom-bg {
    position: absolute;
    bottom: -120px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
  }
  .hero .lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: -1;
  }
  .hero .bg-element {
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    width: 99%;
    margin: 0 auto;
    z-index: 0;
  }
  .hero .sparcles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    z-index: -2;
    opacity: 0.2;
  }
  .hero .slider-container-js {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    overflow: hidden;
    z-index: 10;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  }
  .hero .slider-js {
    display: flex;
    gap: 20px;
    padding: 10px 0;
    white-space: nowrap;
    animation: scroll-jump 25s linear infinite;
  }
  .hero .slider-container-js:hover .slider-js {
    animation-play-state: paused;
  }
  @keyframes scroll-jump {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }
  .hero .slider-js .livecoinwatch-widget-1 {
    min-width: 350px;
    max-height: 170px;
  }
  .navbar-nav .nav-item {
    margin: 0px;
  }
  .navbar-nav .nav-link {
    color: var(--color-text-secondary);
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s ease-in-out;
    padding: 0.5rem 1rem;
  }
  .navbar-nav .nav-link:hover {
    color: var(--color-text-primary);
  }
  .navbar-nav .nav-link.active {
    color: var(--color-text-primary);
    font-weight: bold;
  }
  .navbar-nav .nav-link.disabled {
    color: var(--color-text-disabled);
  }
}
@media only screen and (max-width: 600px) {
  .subtitle {
    position: relative;
    margin-top: 100px;
    padding: 12px 24px;
    border-radius: 50px;
    border: solid 1px var(--color-primary-light);
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    background-color: var(--color-primary);
    align-items: center;
    color: white !important;
    gap: 10px;
  }
  .subtitle span {
    background-color: #D92B1C;
    width: 25px;
    height: 25px;
    display: grid;
    place-content: center;
    color: white;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50%;
  }
  .hero {
    position: relative;
    width: 100%;
    height: 120vh;
    overflow: hidden;
  }
  .hero .social {
    position: relative;
    right: 5px;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .hero .social a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: ease 0.3s;
  }
  .hero .social a:hover {
    color: var(--color-text-primary);
  }
  .hero h1 {
    padding-top: 25px;
    font-size: 45px;
    font-weight: 600;
  }
  .hero p {
    color: var(--color-text-secondary);
  }
  .hero .gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: -2;
    width: 100%;
  }
  .hero .bottom-bg {
    position: absolute;
    bottom: -120px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
  }
  .hero .lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: -1;
  }
  .hero .bg-element {
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    width: 99%;
    margin: 0 auto;
    z-index: 0;
  }
  .hero .sparcles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    z-index: -2;
    opacity: 0.2;
  }
  .hero .slider-container-js {
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    overflow: hidden;
    z-index: 10;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  }
  .hero .slider-js {
    display: flex;
    gap: 20px;
    padding: 10px 0;
    white-space: nowrap;
    animation: scroll-jump 25s linear infinite;
  }
  .hero .slider-container-js:hover .slider-js {
    animation-play-state: paused;
  }
  @keyframes scroll-jump {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }
  .hero .slider-js .livecoinwatch-widget-1 {
    min-width: 350px;
    max-height: 170px;
  }
  .header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 999;
    border-radius: 22px;
    padding: 10px;
    background-color: #1A1A1A;
  }
}

.trustpilot-section {
    background-color: var(--bg-light);
    color: var(--color-text-dark);
    padding: 6rem 0;
    overflow: hidden; /* Crucial for containing the oversized image */
}

.pre-title {
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.trustpilot-section h2 {
    line-height: 1.2;
}

.btn-rate-us {
    background-color: var(--color-primary);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.8rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
}
.btn-rate-us:hover {
    background-color: #D92B1C; /* A darker shade of your primary color */
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 58, 41, 0.2);
}

.image-wrapper {
    position: relative;
}

.trustpilot-image {
    width: 120%; /* Make the image larger than its container */
    transform: translateX(10%) rotate(5deg);
    transition: transform 0.4s ease-in-out;
}

.image-wrapper:hover .trustpilot-image {
    transform: translateX(8%) rotate(3deg) scale(1.02);
}

/* --- Responsive Adjustments --- */
@media (max-width: 991.98px) {
    .trustpilot-section {
        padding: 4rem 0;
        text-align: center;
    }

    .image-wrapper {
        margin-top: 3rem;
    }

    .trustpilot-image {
        width: 100%; /* Reset width for mobile */
        transform: none; /* Reset transforms for a simple, clean look */
    }

    .image-wrapper:hover .trustpilot-image {
        transform: scale(1.02); /* Keep a subtle hover effect */
    }
}
.hero-animation {
    max-width: 60%;
    margin: 0 auto;
    position: absolute;
    bottom: 10%;
    left: 0;
    right: 0;
}

.logo-header {
    max-width:250px;
}

.hero-buttons {
    justify-content:flex-start;
}

@media only screen and (max-width: 600px) {
.hero-animation {
   max-width: 45%;
        margin: 28px auto;
        position: relative;
        bottom: 10%;
        left: 0;
        right: 0;
}
.logo-header {
    max-width:150px;
}
.hero-buttons {
    justify-content:center;
}
}
/*# sourceMappingURL=style.css.map */