/* HOME PAGE -- */

html,body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #F5F5F5;
  height: 100%;
  background: 
      radial-gradient(circle at 25% 25%, rgba(198,167,94,0.02), transparent 50%),
      linear-gradient(180deg, #0a0a0b 0%, #0d0d0f 30%, #101012 60%, #0b0b0c 100%
      ) !important;
  padding-top: env(safe-area-inset-top) !important;  
  background-color: #0c0c0c !important;
  font-family: 'DM Sans', sans-serif !important;    

}

/* NAV -- */

.sdvc-nav {
  position: fixed;
  top: 15px;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 1216px;
  width: calc(100% - 60px); 
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  border-bottom: 1px solid rgba(218,165,32,0.2);
  z-index: 1000;
  transition: all 0.4s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo img {
  width: 50px;
  height: 50px;
}
.company-name {
  color: rgb(197 160 99);
  font-weight: 700;
  font-size: 1.2rem;
  margin-left: 0.8rem;
  display: inline-block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.8rem;
  align-items: center;
  padding-top: 13px;
}
.nav-links li a {
  text-decoration: none;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.nav-links li a:hover {
  color: rgb(204, 202, 202);
}

.dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background-color: rgb(38 38 38) !important;
  min-width: 250px;
  border-radius: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(10px);
}
.dropdown-menu li a {
  display: block;
  padding: 0.8rem 1rem;
  color: white;
}
.dropdown:hover .dropdown-menu {
    display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cta-btn {
  text-decoration: none;
  background: linear-gradient(111deg, #C6A75E 14.74%, #A47E2F 80.2%);
  color: #111;
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  transition: all 0.4s ease;
}
.cta-btn:hover {
  color: rgb(204,202,202);
  box-shadow: 0 8px 20px rgba(198,167,94,0.25);
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: #bfa343;
  border-radius: 2px;
}

.sdvc-nav.scrolled {
  top: -80px;
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  background: rgba(20,20,20,0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 520px;
  height: 100vh;
  background: linear-gradient(to bottom, #111, #0c0c0c);
  padding: 30px 30px;
  transition: right 0.45s cubic-bezier(.77,0,.18,1);
  z-index: 2000;
  box-shadow: -20px 0 60px rgba(0,0,0,0.7);
  display: flex;
  flex-direction: column;
  overflow: scroll;
  overflow-x: hidden;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 60px;
}

.mobile-close {
  width: 30px;
  height: 30px;
  position: relative;
  cursor: pointer;
}

.mobile-close span {
  position: absolute;
  top: 14px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgb(197 160 99);
  border-radius: 2px;
}

.mobile-close span:first-child {
  transform: rotate(45deg);
}

.mobile-close span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu ul {
  list-style: none;
  width: 100%;
}

.mobile-menu li {
  margin-bottom: 2rem; 
}

.mobile-menu a,
.mobile-dropdown-toggle {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: rgb(197 160 99);
}

.mobile-menu li:not(:last-child)::after {
  content: "";
  display: block;
  margin-top: 1.5rem;
  height: 1px;
  background: rgba(197,160,99,0.1);
}

/* DROPDOWN */
.mobile-dropdown ul {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  margin-top: 1rem;
}

.mobile-dropdown.active ul {
  max-height: 300px;
}

.mobile-dropdown ul li {
  margin: 1rem 0;
  font-size: 1rem;
  opacity: 0.8;
}

.mobile-cta {
  margin-top: 3rem;
  background: linear-gradient(111deg, #d4b583 14.74%, #987b4a 80.2%);
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  color: black !important;
  font-weight: 600;
  text-align: center;
}

/* OVERLAY */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1500;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* NAV -- */

/* HERO SECTION -- */

.hero-section {
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center !important;
  justify-content: center !important;
  background: 
      radial-gradient(circle at 25% 25%, rgba(198,167,94,0.02), transparent 50%),
      linear-gradient(180deg, #0a0a0b 0%, #0d0d0f 30%, #101012 60%, #0b0b0c 100%);
  padding: 170px 36px 60px 36px;
  box-sizing: border-box;
}

.hero-container {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 3rem;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #F5F5F5;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 100%;
}

.hero-text p {
  font-size: 1.1rem;
  color: whitesmoke; 
  line-height: 1.6;
  margin-bottom: 2rem;
 
}

.hero-cta {
  text-decoration: none;
  background: linear-gradient(111deg, #C6A75E 14.74%, #A47E2F 80.2%);
  color: #111;
  padding: 0.7rem 2rem;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 10px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(198,167,94,0.25);
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(198,167,94,0.35);
  color: rgb(204,202,202);
}

.hero-visual img {
  width: 100%;
  max-width: 380px;
  display: block;
  animation: float 6s ease-in-out infinite;
}

.hero-visual {
  perspective: 1200px;
}

.hero-rotate {
  transform-style: preserve-3d;
}

/*  floating animation */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* HERO SECTION */

/* EDGE SECTION */

.edge-section {
  width: 100%;
  padding: 140px 7% !important;
  background: linear-gradient(
      180deg,
      #0b0b0c 0%,
      #0e0e10 50%,
      #0b0b0c 100%
  );
}

.edge-container {
  max-width: 1200px;
  margin: 0 auto;
}

.edge-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 90px auto;
}

.edge-header h2 {
  font-size: 2.6rem;
  font-weight: 600;
  color: #F5F5F5;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.edge-header p {
  font-size: 1.1rem;
  color: #b9b9b9;
  line-height: 1.7;
}

.edge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 70px;
}

.edge-card {
  padding: 40px 35px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 18px;
  border: 1px solid rgba(198, 167, 94, 0.15);
  transition: all 0.4s ease;
  backdrop-filter: blur(6px);
}

.edge-card:hover {
  border-color: rgba(198, 167, 94, 0.35);
  transform: translateY(-6px);
}

.edge-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.2rem;
}

.edge-card p {
  font-size: 1rem;
  color: #d0d0d0;
  line-height: 1.7;
}

.bg{
  padding-bottom: 0px;
  padding-top: 0px
}


.generic-banner {
    padding-bottom: 80px;
    position: relative;
}


@media screen and (max-width: 1510px) {
    .row {
        margin-left: 4%;
        margin-right: 4%;
    }
}
.row {
    margin-left: auto;
    margin-right: auto;
    max-width: 1440px;
    position: relative;
}


.generic-banner .content {
    border: 4px solid #525252;
    height: 100%;
    overflow: hidden;
    transition: border-color .3s ease;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 30px;
    
}

.generic-banner .bg-1 {
    background-image: url(../IMAGES/banner-desktop.webp);
}

.generic-banner .bg {
    background-position: 70%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}


.generic-banner .gradient {
    background: linear-gradient(90deg, #000, transparent);
    height: 100%;
    left: 0;
    opacity: .8;
    position: absolute;
    top: 0;
    transition: opacity .3s ease;
    width: 100%;
    z-index: 1;
}


.generic-banner .heading-4, .generic-banner a, .generic-banner p, .generic-banner span {
    position: relative;
    z-index: 2;
}
.margin-xxs {
    margin-bottom: 12px;
}
.color-white {
    color: #fff;
}


.heading-4 {
    font-family: Inter, Times New Roman, arial, sans-serif;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -1.71px;
    line-height: 42px;
    text-transform: none;
    
}

.generic-banner p {
    color: #fff;
    margin-bottom: 20px;
   
}
.generic-banner p {
    max-width: 568px;
}
.margin-xs {
    margin-bottom: 20px;
}

.heading-6 {
    font-family: Inter, Times New Roman, arial, sans-serif;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -1.08px;
    line-height: 32px;
    text-transform: none;
}

.generic-banner a {
    backdrop-filter: blur(0);
    background-color: hsla(0, 0%, 100%, .1);
    border: 1px solid #fff;
    border-radius: 100px;
    color: #fff;
    display: block;
    padding: 14px 24px;
    text-decoration: none;
    transition: background-color .3s ease-out, backdrop-filter .3s ease-out;
    width: fit-content;
}

.text-body-r {
    font-family: Inter, Times New Roman, arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

.mandate-icon {
  margin-bottom: 25px;
}

.mandate-icon svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: #C6A75E;
  stroke-width: 1.5;
  transition: transform 0.4s ease;
}

.mandate-card:hover .mandate-icon svg {
  transform: scale(1.1);
}


/* EDGE SECTION --- */

/* SUPPORTED CRYPTO SECTION */

.supported-crypto-block .crypto-block-wrap{
  display: flex;
    flex-direction: column;
    gap: 48px;
}

.crypto-block-wrap .text-container{
  display: flex;
    gap: 48px;
    justify-content: space-between;
}

.crypto-block-wrap .text-container .left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.crypto-block-wrap .text-container .right {
    display: flex;
    height: fit-content;
    justify-content: flex-end;
}

.supported-crypto-block .crypto-block-wrap .cta {
    align-items: center;
    background: linear-gradient(111deg, #C6A75E 14.74%, #A47E2F 80.2%);
    border-radius: 100px;
    display: flex;
    height: 52px;
    justify-content: center;
    padding: 12px 24px;
    text-decoration: none;
    transition: background-color .3s ease;
    color: #111;
    border-radius: 10px;
    width: fit-content;   
}

.heading-3 {
    font-family: Inter, Times New Roman, arial, sans-serif;
    font-size: 50px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: -2.25px;
    line-height: 56px;
    text-transform: none;
    color: #fff;
}

.emphasis {
    font-family: Inter, Times New Roman, arial, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    text-transform: none;
    color: #fff;
}

.news-ticker {
  /* background: var(--color-bg-menu); */
  padding: 30px 0px 30px 0px;
  overflow: hidden;
}

.ticker-mask {
  overflow: hidden;
  width: 100%;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerMove 15s linear infinite;
}

.ticker-row {
  display: flex;
}

@keyframes tickerMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker-item {
  display: flex;
  align-items: center;
  margin-right: 50px; 
  white-space: nowrap;
  transition: transform var(--transition-fast), filter var(--transition-fast);
}

.ticker-item div img{
  max-width: 100%;
  width: 70px;
}

.supported-crypto-block .crypto-block-wrap .button-container {
    display: none !important;
}

.crypto-container{
  max-width: 1200px;
  margin: 0 auto;
}

.supported-crypto-section {
  width: 100%;
  padding: 140px 7% !important;
  background: linear-gradient(
      180deg,
      #0b0b0c 0%,
      #0e0e10 50%,
      #0b0b0c 100%
  );
 
}

/* SUPPORTED CRYPTO SECTION -- */

/* PERFORMANCE SECTION -- */

.performance-section {
  background: #05070d;
  padding: 120px 8%;
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.performance-container {
  max-width: 1400px;
  margin: 0 auto;
}

.performance-header {
  text-align: center;
  margin-bottom: 80px;
}

.performance-header h2 {
  font-size: 40px;
  font-weight: 500;
  color: #d4af37;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.performance-header p {
  font-size: 18px;
  color: #9aa4b2;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.performance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.stat-card {
  background: linear-gradient(
    145deg,
    rgba(10, 16, 30, 0.9),
    rgba(6, 10, 20, 0.9)
  );
  padding: 50px 40px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, border 0.4s ease;
  border: 1px solid rgba(212, 175, 55, 0.05);
}

.stat-card:hover {
  transform: translateY(-6px);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-number {
  font-size: 52px;
  font-weight: 600;
  color: #ffffff;
  display: inline-block;
}

.stat-symbol {
  font-size: 28px;
  color: #d4af37;
  margin-left: 4px;
}

.stat-card p {
  margin-top: 20px;
  font-size: 16px;
  color: #9aa4b2;
  letter-spacing: 0.3px;
}

/* PERFORMANCE SECTION */

/* INFRASTRUCTURE SECTION */

.infrastructure-section {
  padding: 120px 7% !important; 
  position: relative;
}

.infrastructure-section::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: radial-gradient(circle at 20% 30%, rgba(180,140,60,0.08), transparent 40%); */
  pointer-events: none;
}

.container {
  max-width: 1300px;
  margin:0 auto !important;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
}

.section-header p {
  font-size: 18px;
  color: #9aa4b2;
  max-width: 650px;
  margin: auto;
}

.infrastructure-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

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

.feature-card {
  /* background: #0b0f19;
  border: 1px solid rgba(255,255,255,0.06); */
  background: rgba(255, 255, 255, 0.02);
  border-radius: 18px;
  border: 1px solid rgba(198, 167, 94, 0.15);
  transition: all 0.4s ease;
  backdrop-filter: blur(6px);
  padding: 20px;
  transition: 0.4s ease;
  position: relative;
}

.feature-card:hover {
  border-color: rgba(180,140,60,0.5);
  transform: translateY(-6px);
}

.feature-image {
  margin-bottom: 25px;
}

.feature-image img {
  max-width: 100%;
  min-width: 260px;
  height: auto;
}

.feature-card h3 {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 15px;
  color: #9aa4b2;
  line-height: 1.6;
}

.visual-side img {
  max-width: 100% !important;
  display: block;
  margin-left: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.7));
  transition: all 0.4s ease;
  transition: 0.4s ease;
  object-fit: cover;
}

.visual-side img:hover{
  border-color: rgba(180,140,60,0.5) !important;
  transform: translateY(-7px);
}


/* INFRASTRUCTURE SECTION --- */

/* .how-it-works {
  background: #060910;
  padding: 120px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header h2 {
  font-size: 40px;
  color: #fff;
  margin-bottom: 15px;
}

.section-header p {
  color: #9aa4b2;
  max-width: 600px;
  margin: auto;
}

.process-line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(180,140,60,0.6), transparent);
  transform: translate(-50%, -50%);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2;
}

.process-card {
  background: #0c111b;
  border: 1px solid rgba(255,255,255,0.05);
  padding: 40px;
  transition: 0.4s ease;
}

.process-card:hover {
  transform: translateY(-8px);
  border-color: rgba(180,140,60,0.5);
}

.step-number {
  font-size: 32px;
  font-weight: 600;
  color: rgba(180,140,60,0.8);
  display: block;
  margin-bottom: 20px;
}

.process-card h3 {
  color: #fff;
  margin-bottom: 15px;
}

.process-card p {
  color: #9aa4b2;
  line-height: 1.6;
}

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

  .process-line {
    display: none;
  }
}

@media (max-width: 600px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}
 */


 /*HOW SIMPLE SECTION  */

.how-simple {
  padding: 120px 7%;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header h2 {
  font-size: 42px;
  color: #ffffff;
  margin-bottom: 15px;
}

.section-header p {
  color: #9aa4b2;
  font-size: 18px;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 80px;
}

.how-item {
  max-width: 350px;
}

.how-item.center {
  margin: 0 auto;
  text-align: center;
}

.step-number {
  font-size: 64px;
  font-weight: 700;
  color: rgba(180,140,60,0.9);
  margin-bottom: 20px;
  line-height: 1;
}

.how-item h3 {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 15px;
}

.how-item p {
  color: #9aa4b2;
  line-height: 1.6;
}

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

/* HOW SIMPLE -- */


/* PLANS SECTION -- */

.plans-section {
  background: #060910;
  padding: 120px 7%;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 80px;
}

.plan-card {
  background: #0c111b;
  padding: 50px 40px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: 0.4s ease;
  position: relative;
}

.plan-card:hover {
  transform: translateY(-8px);
  border-color: rgba(180,140,60,0.5);
}

.plan-card.featured {
  border: 1px solid rgba(180,140,60,0.6);
}

.badge {
  position: absolute;
  top: -15px;
  left: 40px;
  background: rgba(180,140,60,0.9);
  color: #000;
  font-size: 12px;
  padding: 6px 12px;
  font-weight: 600;
}

.plan-card h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 20px;
}

.price {
  font-size: 18px;
  color: rgba(180,140,60,0.9);
  margin-bottom: 30px;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.plan-card ul li {
  color: #9aa4b2;
  margin-bottom: 12px;
}

.plan-btn {
  display: inline-block;
  padding: 12px 24px;
  background: rgba(180,140,60,0.9);
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

/* PLAN SECTION --- */

/* FAQ SECTION -- */

.faq-section {
  padding: 120px 0;
}

.faq-wrapper {
  max-width: 900px;
  margin: 80px auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 25px 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  padding: 0;
  position: relative;
}

.faq-question::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0%;
  height: 2px;
  background: rgba(180,140,60,0.9);
  transition: width 0.4s ease;
}

.faq-item.active .faq-question::after {
  width: 100%;
}

.faq-icon {
  width: 18px;
  height: 18px;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: rgba(180,140,60,0.9);
  transition: 0.3s ease;
}

.faq-icon::before {
  width: 18px;
  height: 2px;
  top: 8px;
  left: 0;
}

.faq-icon::after {
  width: 2px;
  height: 18px;
  left: 8px;
  top: 0;
}

.faq-item.active .faq-icon::after {
  transform: scaleY(0);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  margin-top: 15px;
  color: #9aa4b2;
  line-height: 1.7;
}

/* FAQ SECTION --- */


/* FOOTER SECTION */

.footer {
  background: #04070d;
  color: #9aa4b2;
  padding-top: 100px;
}

.footer-cta {
  text-align: center;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-cta h3 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 25px;
}

.footer-cta-btn {
  display: inline-block;
  padding: 14px 30px;
  background: rgba(180,140,60,0.9);
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-cta-btn:hover {
  background: rgba(180,140,60,1);
}


.footer-main {
  padding: 80px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-logo {
  color: #fff;
  margin-bottom: 20px;
}

.footer-brand p {
  max-width: 350px;
  line-height: 1.7;
}

.footer-column h4 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column a {
  color: #9aa4b2;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-column a:hover {
  color: rgba(180,140,60,0.9);
}


.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 30px 20px;
  text-align: center;
  font-size: 13px;
  color: #7f8895;
}

.footer-bottom span {
  display: block;
  margin-top: 10px;
}

/* FOOTER --- */

/* HOME PAGE --- */


/* ABOUT US PAGE -- */

/* ABOUT HERO -- */

.about-hero {
  padding: 160px 0 120px;
  background: radial-gradient(circle at 80% 40%, rgba(180,140,60,0.08), transparent 40%),
              linear-gradient(180deg, #05080f 0%, #04070d 100%);
  color: #fff;
}

.about-hero-inner {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-tag {
  color: rgba(180,140,60,0.9);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  display: inline-block;
  margin-bottom: 25px;
}

.about-hero h1 {
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 30px;
}

.about-hero p {
  color: #9aa4b2;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 50px;
  padding: 0px 120px;
  text-align: center !important;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr!important;
  justify-content: center;
  text-align: center;
}

.about-stats h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.about-stats span {
  font-size: 14px;
  color: #7f8895;
}

.about-hero-visual {
  height: 420px;
  background: linear-gradient(135deg, rgba(180,140,60,0.15), rgba(20,25,40,0.4));
  border: 1px solid rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border-radius: 10px;
}

.about-philosophy {
  padding: 120px 7%;
  background: #060a14;
  color: #fff;
}

.philosophy-header span {
  color: rgba(180,140,60,0.9);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
}

.philosophy-header h2 {
  font-size: 40px;
  margin: 20px 0 60px;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
}

.philosophy-left p {
  color: #9aa4b2;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.highlight-box {
  padding: 35px;
  background: linear-gradient(135deg, rgba(180,140,60,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 30px;
}

.highlight-box h3 {
  margin-bottom: 15px;
}

.highlight-box p {
  color: #9aa4b2;
  line-height: 1.7;
}

/* ABOUT HERO */


/* ABOUT US PAGE --- */

/* FORM PAGE */

.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.auth-card {
  width: 100%;
  max-width: 420px;
  background: linear-gradient(
    145deg,
    rgba(16,16,18,0.95),
    rgba(10,10,12,0.95)
  );
  border-radius: 22px;
  padding: 50px 44px;
  border: 1px solid rgba(198,167,94,0.12);
  box-shadow: 0 40px 120px rgba(0,0,0,0.6);
}

/* Header */
.auth-header {
  text-align: center;
  margin-bottom: 36px;
}

.auth-header h1 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

.auth-header p {
  font-size: 15px;
  color: #9aa4b2;
  line-height: 1.6;
}

/* Form */
.auth-form {
  display: flex;
  flex-direction: column;
}

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

.form-group label {
  display: block;
  font-size: 13px;
  color: #bcbcbc;
  margin-bottom: 8px;
}

.form-group input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: #ffffff;
  font-size: 15px;
  outline: none;
}

.form-group input::placeholder {
  color: #6f6f6f;
}

.form-group input:focus {
  border-color: rgba(198,167,94,0.6);
}

.auth-button {
  margin-top: 12px;
  padding: 14px;
  border-radius: 14px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  color: #0c0c0c;
  background: linear-gradient(111deg, #C6A75E 14.74%, #A47E2F 80.2%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.auth-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(198,167,94,0.25);
}

.auth-footer {
  margin-top: 26px;
  text-align: center;
  font-size: 14px;
  color: #9aa4b2;
}

.auth-footer a {
  color: #C6A75E;
  text-decoration: none;
  margin-left: 6px;
}

.auth-footer a:hover {
  text-decoration: underline;
}


.form-group select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: #ffffff;
  font-size: 15px;
  outline: none;
  appearance: none;
}

.form-group select:focus {
  border-color: rgba(198,167,94,0.6);
}

.form-group select option{
  background-color: #05070d !important;
  color: #ffffff !important;
}

/* Error message */
.form-error {
  min-height: 18px;
  margin-bottom: 16px;
  font-size: 13px;
  color: #d98c8c;
}

.form-wrapper{
  padding: 100px 0px 60px 0px;
}

/* FORM PAGE */

#preloader {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 25% 25%, rgba(198,167,94,0.02), transparent 50%),
    linear-gradient(180deg, #0a0a0b 0%, #0d0d0f 30%, #101012 60%, #0b0b0c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loader-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(198,167,94,0.15);
  border-top-color: #C6A75E;
  animation: spin 1.1s linear infinite;
}


@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Fade-out when done */
#preloader.fade-out {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

/* PLANS PAGE */

.plans-hero {
  position: relative;
  padding: 160px 8% 140px;
  background:
    radial-gradient(circle at 20% 20%, rgba(198,167,94,0.06), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(198,167,94,0.03), transparent 60%),
    linear-gradient(180deg, #0a0a0b 0%, #0d0d0f 40%, #101012 100%);
  border-bottom: 1px solid rgba(198,167,94,0.12);
  overflow: hidden;
}

.plans-hero-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.plans-hero-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(198,167,94,0.75);
}

.plans-hero-title {
  font-size: 50px;
  line-height: 1.15;
  font-weight: 600;
  margin-bottom: 26px;
  color: #ffffff;
}

.plans-hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto 44px;
  color: #9aa4b2;
}

.plans-hero-divider {
  width: 120px;
  height: 1px;
  margin: 0 auto 28px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(198,167,94,0.6),
    transparent
  );
}

.plans-hero-meta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #b6bcc6;
}

.plans-hero-meta span {
  white-space: nowrap;
}

/* PLANS PAGE */

/* HOW IT WORKS PAGE */

.how-hero {
  position: relative;
  padding: 180px 8% 150px;
  background:
    radial-gradient(circle at 20% 25%, rgba(198,167,94,0.06), transparent 55%),
    radial-gradient(circle at 80% 15%, rgba(198,167,94,0.03), transparent 60%),
    linear-gradient(180deg, #0a0a0b 0%, #0d0d0f 45%, #101012 100%);
  border-bottom: 1px solid rgba(198,167,94,0.12);
}

.how-hero-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.how-hero-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(198,167,94,0.75);
}

.how-hero-title {
  font-size: 50px;
  line-height: 1.15;
  font-weight: 600;
  margin-bottom: 26px;
  color: #ffffff;
}

.how-hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto 50px;
  color: #9aa4b2;
}

.how-hero-flow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #b6bcc6;
}

.how-hero-flow span {
  white-space: nowrap;
}

.how-hero-flow .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(198,167,94,0.6);
}

/* HOW IT WORKS PAGE --- */

/* SUPPORT PAGE -- */

.support-hero {
  position: relative;
  padding: 180px 8% 170px;
  background:
    radial-gradient(circle at 18% 22%, rgba(198,167,94,0.05), transparent 55%),
    radial-gradient(circle at 82% 18%, rgba(198,167,94,0.03), transparent 60%),
    linear-gradient(180deg, #0a0a0b 0%, #0d0d0f 45%, #101012 100%);
  border-bottom: 1px solid rgba(198,167,94,0.12);
}

.support-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.support-hero-eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(198,167,94,0.7);
}

.support-hero-title {
  font-size: 46px;
  line-height: 1.15;
  font-weight: 600;
  margin-bottom: 22px;
  color: #ffffff;
}

.support-hero-subtitle {
  font-size: 17px;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 44px;
  color: #9aa4b2;
}

.support-hero-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #b6bcc6;
}

.support-hero-meta .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(198,167,94,0.6);
}




.contact-section {
  padding: 120px 0;
}

.contact-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-context h2 {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #ffffff;
}

.contact-context p {
  font-size: 16px;
  line-height: 1.7;
  color: #9aa4b2;
  margin-bottom: 34px;
}

.contact-notes div {
  font-size: 14px;
  color: #b6bcc6;
  margin-bottom: 10px;
}


.contact-form {
  background: linear-gradient(
    145deg,
    rgba(16,16,18,0.95),
    rgba(12,12,14,0.95)
  );
  border-radius: 18px;
  padding: 44px 42px;
  border: 1px solid rgba(198,167,94,0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
  color: #bcbcbc;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: #ffffff;
  font-size: 15px;
  outline: none;
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #6f6f6f;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(198,167,94,0.6);
}


.contact-button {
  margin-top: 12px;
  width: 100%;
  padding: 15px;
  border-radius: 14px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  color: #0c0c0c;
  background: linear-gradient(111deg, #C6A75E 14.74%, #A47E2F 80.2%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(198,167,94,0.25);
}

/* SECURITY PAGE */


.security-section {
  padding: 120px 8%;
}

.security-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.security-eyebrow {
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(198,167,94,0.7);
  margin-bottom: 16px;
}

.security-title {
  font-size: 44px;
  line-height: 1.2;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
}

.security-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: #9aa4b2;
  margin-bottom: 26px;
}

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

.security-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 14px;
  font-size: 16px;
  color: #b6bcc6;
}

.security-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(
    111deg,
    #C6A75E,
    #A47E2F
  );
}

.security-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.security-visual img {
  max-width: 70%;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}

/* SECURITY PAGE */
