:root {
  /* Colors */
  --color-body: #000000;
  --color-bg-main: #0d1321;
  --color-bg-menu: #0b0d10;
  --color-bg-card: #13203f;
  --color-bg-offer: #0a1f36;
  --color-btn-text:#001f3f;
  --color-txt-how-it-work:#e6e6e6;
  --color-select: #0056b3;
  --color-gold: #f2d16b;
  --color-gold-dim: #e0b120;
  --cta-mix-btn: linear-gradient(90deg, var(--color-gold),var(--color-gold-dim) );
  --color-text-main: #ffffff;
  --color-text-muted: #c9c9c9;
  --color-border-soft: rgba(242, 209, 107, 0.2);

  /* Typography */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-sm: 'DM Sans', sans-serif;
  --fs-h1: clamp(2.5rem, 4vw, 3.5rem);   /* 40–56px */
  --fs-h2: clamp(2rem, 3vw, 2.5rem);     /* 32–40px */
  --fs-h3: clamp(1.25rem, 2vw, 1.5rem);  /* 20–24px */
  --fs-body: 1rem;                       /* 16px */
  --fs-body-lg: 1.125rem;                /* 18px (hero, intros) */
  --fs-small: 0.875rem;                  /* 14px */

  /* Weight */

  --fw-main: 700;
  --fw-medium: 600;
  --fw-small: 500;
  --fw-tiny: 400;


  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 60px;
  --space-xl: 100px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
   --radius-btn: 12px;
  --radius-lg: 24px;


  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-main: 0.35s ease;
  --transition-nav: 0.4s ease-in-out;

}

/* HOME SECTION -- */

html body{
    background-color: var(--color-body) !important;
    margin: 0;
    padding-top: env(safe-area-inset-top);
    font-family: var(--font-sm) !important;
}

/* NAV SECTION -- */

#mobile-nav{
    display: none;
}

nav{
    padding: 15px 25px !important;
    transition: background var(--transition-nav);
}

nav.scrolled {
  background: rgba(0,0,0,0.85); /* smooth scroll transition */
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.logo-wrap{
    display: flex;
    gap: 20px;
}

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

.navbar-brand{
    color: var(--color-text-main) !important;
}

.language-selector select {
  background-color: var(--color-body); 
  color: var(--color-text-main);         
  border: 2px solid var(--color-btn-text); 
  padding: 8px 5px;
  font-size: var(--fs-body);
  border-radius: var(--radius-sm);
  font-weight: var(--fw-small);
  cursor: pointer;
  transition: all var(--transition-fast);
}

/* Hover and focus effect */
.language-selector select:hover,
.language-selector select:focus {
  border-color: var(--color-select);  
  box-shadow: 0 0 7px var(--color-select);
  outline: none;
}

.nav-item .nav-link{
    color: var(--color-text-main)!important;
    padding: 0px 15px !important;
    transition: all var(--transition-nav);
    font-size: 15px !important;
    font-weight: var(--fw-small);
    font-family: var(--font-sm) !important; 
    letter-spacing: 1px;                  
    color: var(--color-text-main);                       
    transition: color 0.2s ease;
}

.nav-link:hover{
    color: var(--color-gold-dim) !important;
}

.dropdown:hover .dropdown-menu{
    display: block;
}

.nav-item .dropdown-menu{
    background-color: var(--color-bg-menu);
    
}

.dropdown-menu .dropdown-item{
  color: var(--color-text-main) !important;
}

.dropdown-menu .dropdown-item:hover{
  color: var(--color-btn-text) !important;
}

.btc-price-wrap{
    font-size: var(--fs-body);
    color: var(--color-text-main);
    font-weight: var(--fw-small);
}



.btc-price {
  font-weight:var(--fw-small);
  color: var(--color-gold-dim);
  transition: color var(--transition-fast);
}

.btc-price.updated {
  color: var(--color-select); 
}

.sign-up-btn{
  font-family: var(--font-sm) !important;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-size: var(--fs-body);
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--color-gold-dim), var(--color-gold)); /* gold gradient */
  color: var(--color-btn-text) !important; 
  box-shadow: 0 4px 8px rgba(224,177,32,0.3);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.sign-up-btn:hover{
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dim)); /* reverse gradient on hover */
  box-shadow: 0 6px 14px rgba(255,215,0,0.5);
}

.log-in-btn{
  background: transparent;
  padding: 8px 25px;
  color: var(--color-gold-dim);
  text-decoration: none;
  border-radius: var(--radius-md);
}

.log-in-btn:hover {
  background: rgba(224,177,32,0.1);
  border-color: var(--color-gold);
  color: var(--color-gold-dim);
}

 .menu-toggle {
  width: 32px;
  height: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-xs);
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 999;
}

body.menu-open {
  overflow: hidden;
}

.menu-toggle span {
  height: 1.5px;
  width: 24px;
  background: rgba(255,255,255,0.9);
  transition: transform 0.3s ease, opacity 0.2s ease;
  transform-origin: center;
}

/* ACTIVE STATE */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}


.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg-menu); 
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 997;
  padding: 120px 32px;
  overflow: scroll;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.mobile-menu li a{
  font-size: 1.6rem;
  font-weight: var(--fw-small);
  color: rgba(255,255,255,0.9);
  text-decoration: none;
}

.mobile-menu li.cta {
  margin-top: var(--space-md);
  font-weight: var(--fw-medium);
}

.mobile-cta{
  margin-left: 30px;
  margin-top: 50px;
}

.menu-toggle{
  position: relative;
  z-index: 999;
}

.mobile-fab {
    display: none;
}

/* NAV SECTION --- */

/*  */


.activity-toast {
  position: fixed;
  bottom: 50px;
  right: 25px;
  max-width: 350px;
  padding: 14px 18px;
  background: #0b1224;
  color: #fff;
  border-radius: 14px;
  font-size: 0.9rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(20px);
  z-index: 9999;
  pointer-events: none;
  transition: all 0.4s ease;
  border: 1px solid rgba(255,255,255,0.06);
}

.activity-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.activity-name {
  font-weight: 600;
}

.activity-action {
  display: block;
  margin-top: 4px;
  color: #c9d2ff;
  font-size: 0.85rem;
}



/*  */


/* HERO SECTION -- */


.hero-section{
  display: flex;
  align-items: center;
  padding: 90px 80px 80px 60px;
  background-color: var(--color-body); 
  background-image: url(../IMAGES/2151612707.jpg); 
  background-position: right center; 
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  min-height: clamp(90vh, 100vh, 100svh);
}

.hero-content {
  max-width: 60%;
  z-index: 2; /* ensure text is above background */
}


.hero-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
 
}

.hero-cut {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: auto;
  z-index: 2;
  pointer-events: none; 
}

.hero-headline{
    font-family: var(--font-heading);
    font-weight: var(--fw-main) !important;
    font-size: var(--fs-h1);   
    color: var(--color-text-main);    
}


.hero-subheadline, .btc-price{
  font-family: var(--font-sm);
  font-weight: var(--fw-tiny); 
}

.hero-subheadline {
  color: rgba(255,255,255,0.72); 
  padding: 15px 0px;
}

.cta-primary {
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-dim)); 
  color: var(--color-btn-text); 
  border-radius: var(--radius-btn);
  padding: 10px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  
}

.cta-primary a{
  text-decoration: none;
  color: var(--color-btn-text);
}

.cta-secondary a{
  text-decoration: none;
  color: var(--color-gold-dim);
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(224, 176, 32, 0.3);
}


.cta-secondary {
  background: transparent;
  border: 2px solid var(--color-gold-dim);
  color: var(--color-gold);
  border-radius: var(--radius-btn);
  padding: 10px 28px;
  transition: all 0.2s ease;
}

.cta-secondary:hover {
  background: rgba(201,162,77,0.15);
  transform: translateY(-3px);
}

button,
.cta-primary,
.cta-secondary {
  font-family: var(--font-heading)!important;
  font-weight: var(--fw-medium) !important;
  letter-spacing: 0.6px;
}


/* HERO SECTION --- */

/* TRUST STRIP SECTION -- */

.trust-section {
  background: var(--color-bg-menu);
  padding: 150px 24px;
}

.trust-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
}

.trust-card {
  position: relative;
  padding-left: 28px;
  color: #e6e8eb;
  opacity: 0;
  transform: translateY(8px);
  animation: fadeUp 2s ease forwards;
}

.trust-card:nth-child(2) { animation-delay: 0.05s; }
.trust-card:nth-child(3) { animation-delay: 0.1s; }
.trust-card:nth-child(4) { animation-delay: 0.15s; }
.trust-card:nth-child(5) { animation-delay: 0.2s; }
.trust-card:nth-child(6) { animation-delay: 0.25s; }

/* Accent line */
.accent-line {
  position: absolute;
  left: 0;
  top: 6px;
  width: 1px;
  height: 70%;
  background: linear-gradient(
    to bottom,
    rgba(140,160,255,0.6),
    rgba(140,160,255,0)
  );
}

.trust-icon {
  width: 22px;
  height: 22px;
  color: #9fb4ff;
  opacity: 0.65;
  margin-bottom: 16px;
}

.trust-icon svg {
  width: 100%;
  height: 100%;
}

.trust-card h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-body-lg);
  font-weight: var(--fw-small);
  margin-bottom: var(--space-xs);
}

.trust-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #b7bcc4;
  max-width: 320px;
}

.trust-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: var(--fw-main);
  color: var(--color-text-main);
  margin-bottom: 40px;
}


/* Hover – subtle */
.trust-card:hover .accent-line {
  background: linear-gradient(
    to bottom,
    rgba(140,160,255,0.85),
    rgba(140,160,255,0)
  ) !important;
}

/* Animation */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* TRUST STRIP SECTION --- */

/* INTEREST OFFER -- */

.interest-offer {
  background: var(--color-bg-menu);
  padding: 60px 24px;
  color: var(--color-text-main);
  overflow: hidden;
  position: relative;
}

.offer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.offer-text h2 {
  font-size: var(--fs-h2);
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: var(--fw-medium);
  font-family: var(--font-heading);
  color: var(--color-text-main);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

.offer-text p {
  font-size: var(--fs-body-lg);
  line-height: 1.5;
  color: var(--color-text-muted);
  font-family: var(--font-sm);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.1s;
}

.offer-cta {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  flex-wrap: wrap;
}

.cta-primary-2{
  background: linear-gradient(90deg, var(--color-bg-offer), var(--color-gold-dim));
  color: var(--color-text-main);
  padding: 14px 28px;
  font-weight: var(--fw-main);
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.cta-primary-2:hover {
  transform: translateY(-4px) !important;
}

.cta-secondary-2{
  background: transparent;
  color: var(--color-gold-dim);
  border: 2px solid var(--color-gold-dim);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: var(--fw-main);
  text-decoration: none;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.cta-secondary-2:hover {
  background: var(--color-gold-dim);
  color: var(--color-bg-menu);
}

.fine-print {
  font-size: 12px;
  color: var(--color-text-muted);
}

.offer-visual {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  vertical-align: middle;
  align-items: center;
  opacity: 0;
  transform: scale(0.8);
  animation: popIn 0.8s ease forwards;
  animation-delay: 0.3s;
}

.apy-image {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-bg-offer), var(--color-gold-dim));
  display: flex;
  justify-content: center;
  vertical-align: middle;
  align-items: center;
  box-shadow: 0 0 60px rgba(224, 177, 32, 0.4);
  position: relative;
}

.apy-rate {
  font-size: 65px;
  font-weight: 900;
  color: var(--color-text-main);
  text-shadow: 0 0 20px rgba(224, 177, 32, 0.5);
  font-family: var(--font-heading);
}

/* Animations */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* INTEREST SECTION ---  */


/* NEWS TICKER SECTION -- */

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

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

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

.ticker-row {
  display: flex;
}

.ticker-item:hover {
  transform: scale(1.08);
  animation-play-state: paused !important; /* smooth pause */
}

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

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

.award-badge {
  display: flex;
  margin-right: var(--space-sm);
}

.award-badge svg {
  width: 20px; 
  height: 20px;
  margin: 0 2px;
  filter: drop-shadow(0 0 2px rgba(224, 177, 32, 0.7));
}

.award-text {
  font-family: var(--font-heading);
  font-weight: var(--fw-medium);
  color: var(--color-text-main);
  font-size: var(--fs-body);
  line-height: 1.4;
  text-align: center;
}

.award-text span {
  display: block;
  font-size: var(--fs-small);
  font-weight: var(--fw-small);
  opacity: 0.8;
  margin-top: 4px;
}


/* NEWS TICKER SECTION ---  */


/* PORTFOLIO SECTION -- */

.portfolio-section{
  padding: 0px 24px 20px 24px; 
}

.containerr {
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 0;
}

.col_wrapper {
  display: flex;
  flex-direction: row-reverse;
  gap: 40px;
  flex-wrap: wrap;
}

.col_media {
  position: relative;
  flex: 1 1 420px;
  min-width: 350px;
}

.anim-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.anim-slide {
  width: 100%;
  max-width: 450px;
  height: 470px;
  margin: 0 auto;
  position: relative;
  transform: rotate(-30deg);
  transform-origin: center;
}

.icon {
  position: absolute;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  display: block;
  object-fit: contain;
  transition: all var(--transition-fast);
}

/* Desktop cluster positions */
.sl-1 { top: 25%; left: 0%; width: 160px; height: 160px; transform: rotate(-5deg); }
.sl-2 { top: 35%; left: 35%; width: 210px; height: 90px; transform: rotate(3deg); }
.sl-3 { top: 55%; left: 28%; width: 120px; height: 80px; transform: rotate(-3deg); }
.sl-4 { top: 12%; right: 18%; width: 160px; height: 160px; transform: rotate(4deg); }
.sl-5 { top: 5%; left: 20%; width: 130px; height: 170px; transform: rotate(-2deg); }
.sl-6 { bottom: -5%; right: 37%; width: 160px; height: 150px; transform: rotate(2deg); }
.sl-7 { bottom: 9%; right: 12%; width: 160px; height: 160px; transform: rotate(-4deg); }

/* TEXT COLUMN */
.col_text {
  flex: 1 1 400px;
  min-width: 280px;
  display: flex;
  align-items: center;
}

.text-box {
  width: 100%;
}

.text-box h2 {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text-main);
  font-family: var(--font-heading);
}


.text-box p, .copy-description{
  font-size: var(--fs-body);
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--color-text-muted);
}

.text-box a {
  color: var(--color-gold-dim);
  text-decoration: none;
  font-weight: var(--fw-small);
}

/*  */

.copy-trade-wrap{
  max-width: 1200px;
  margin: 0 auto;
}

.copy-trade-list{
  display: flex;
  gap: 120px;
}

.copy-trade-item.text{
  padding-top: 120px;
}

.copy-title{
  font-size: var(--fs-h2);
  margin-bottom: var(--space-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text-main);
  font-family: var(--font-heading);
}

.coins-icon{
  object-fit: cover;
  width: auto;
}

.copy-trade-list .copy-description{
  padding-bottom: 70px;
}


/* PORTFOLIO SECTION --- */

/* HOW IT WORK SECTION -- */

.how-it-works {
  background: var(--color-bg-menu);
  padding: 120px 24px;
  color: var(--color-txt-how-it-work);
}

.how-it-works .containeer {
  max-width: 1200px;
  margin: 0 auto;
}

.how-header {
  max-width: 640px;
  margin-bottom: 80px;
  
}

.how-header h2 {
  font-size: var(--fs-h1);
  font-weight: var(--fw-medium);
  color: #f5f5f5;
  margin-bottom: var(--space-sm);
  font-family: var(--font-heading);
}

.how-header p {
  font-size: var(--fs-body-lg);
  line-height: 1.6;
  color: #b8c0cc;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.how-step{
  position: relative;
}

.step-index {
  font-size: 64px;
  font-weight: var(--fw-main);
  color: rgba(200,161,74,0.15); /* dimmed gold */
  display: block;
  margin-bottom: 24px;
}

.how-step h3 {
  font-size: var(--fs-h3);
  margin-bottom: 12px;
  color: var(--color-text-main);
  font-family: var(--font-heading);
}

.how-step p {
  font-size: var(--fs-body);
  line-height: 1.6;
  color: #b8c0cc;
}

.how-footer {
  margin-top: 80px;
  display: flex;
  gap: 24px;
  font-size: var(--fs-small);
  color: #9fa6b2;
}

.how-footer span {
  position: relative;
  padding-left: 14px;
}

.how-footer span::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--color-gold-dim);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}


/* HOW IT WORKS SECTION --- */

/* INVESTMENT PLANS SCETION -- */

.investment-plans {
  padding: 80px 24px;
  background-color: var(--color-bg-main);
  color: var(--color-text-main);
  
}

.investment-plans h2 {
  font-size: var(--fs-h2);
  color: var(--color-text-main); 
  text-align: center;
  margin-bottom: var(--space-sm);
  font-family: var(--font-heading);
}

.investment-plans p {
  text-align: center;
  font-size: var(--fs-body);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #ccc;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.tab-btn {
  background: transparent;
  border: none;
  color: #ccc;
  font-weight: var(--fw-small);
  padding: 10px 25px;
  font-size: var(--fs-body);
  cursor: pointer;
  position: relative;
  transition: all var(--transition-fast);
}

.tab-btn.active,
.tab-btn:hover {
  color: var(--color-gold);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-gold);
  border-radius: 3px;
}


.tab-contents {
  display: flex;
  justify-content: center;
}

.tab-content {
  display: none;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1200px;
}

.tab-content.active {
  display: flex;
}

.plan-card {
  background: var(--color-bg-card);
  flex: 1 1 300px;
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

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

.plan-card .apy {
  font-weight: var(--fw-medium);
  font-size: var(--fs-body-lg);
  margin-bottom: 6px;
  color: var(--color-text-main);
}

.plan-card .investment-window {
  font-size: var(--fs-small);
  color: #ccc;
  margin-bottom: 4px;
}

.plan-card .amount-range {
  font-size: var(--fs-body);
  font-weight: var(--fw-small);
  color: var(--color-gold);
  margin-bottom: 10px;
}

.plan-card .description {
  font-size: var(--fs-small);
  color: #ccc;
  margin-bottom: 20px;
}

.plan-card .btn {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 10px;
  background: var(--cta-mix-btn); /* deep blue → gold gradient */
  color: var(--color-bg-main);
  font-weight: var(--fw-medium);
  text-decoration: none;
  transition: all var(--transition-fast);
}

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

/* INVESTMENT PLAN SECTION ---  */

/* STATS SECTION -- */

.stats-section {
  padding: 100px 24px;
  background: var(--color-bg-main);
  color: var(--color-text-main);
  text-align: center;
  
}

.stats-section h2 {
  font-size: var(--fs-h2);
  color: var(--color-text-main);
  margin-bottom: var(--space-sm);
  font-family: var(--font-heading);
}

.stats-section p {
  font-size: var(--fs-body);
  color: #ccc;
  margin-bottom: var(--space-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.stats-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-card {
  background:var(--color-bg-card);
  padding: 30px 20px;
  border-radius: var(--radius-md);
  width: 260px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.stat-card .icon {
  font-size: 35px;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.stat-card .count {
  font-size: 32px;
  font-weight: 800;
  color: var(--color-gold);
  margin-bottom: var(--space-xs);
  transition: all var(--transition-fast);
  font-family: var(--font-heading);
  margin-left: 20px;
}

.stat-card .label {
  font-size: var(--fs-body);
  color: #ccc;
}

/* STATS SECTION --- */

/* LIVE MARKET CHART */

.live-market-charts {
  padding: 140px 20px;
  color: var(--color-text-main);
  text-align: center;
  
}

.live-market-charts h2 {
  font-size: var(--fs-h2);
  color: var(--color-text-main);
  margin-bottom: var(--space-md);
  font-family: var(--font-heading);
}

.live-market-charts p {
  font-size: var(--fs-body);
  color: #ccc;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.tradingview-widget-container {
  margin: 0 auto;
  max-width: 1400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}


/* LIVE MARKET CHART SECTION --- */

/* FOOTER */


.footer {
  background: var(--color-bg-main);
  color: var(--color-text-main);
  position: relative;
  overflow: hidden;
  padding-top: var(--space-lg);
}

.footer::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(242, 209, 107, 0.15), transparent 70%);
  animation: rotateGlow 20s linear infinite;
  z-index: 0;
}

@keyframes rotateGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-brand {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  width: 140px;
  height: 140px;
}

.footer-brand p {
  color: #ccc;
  font-size: var(--fs-small);
}

.footer-cta, .mobile-cta{
  display: inline-block;
  padding: 12px 28px;
  background: var(--color-gold);
  color: var(--color-bg-main);
  border-radius: 10px;
  font-weight: var(--fw-medium);
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.footer-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(242, 209, 107, 0.5);
}

.footer-links {
  display: flex;
  flex: 2 1 500px;
  justify-content: space-between;
  gap: 40px;
}

.link-column h4 {
  color: var(--color-gold);
  font-size: var(--fs-body);
  margin-bottom: 12px;
}

.link-column a {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin-bottom: var(--space-xs);
  transition: color var(--transition-fast);
}

.link-column a:hover {
  color: var(--color-gold);
}

.footer-social {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-social a img {
  width: 28px;
  filter: brightness(0) invert(1);
  transition: transform var(--transition-fast), filter var(--transition-fast);
}

.footer-social a:hover img {
  transform: scale(1.2);
  filter: brightness(1) sepia(1) hue-rotate(40deg) saturate(5);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(242, 209, 107, 0.2);
  padding: 20px 0;
  margin-top: var(--space-lg);
  font-size: var(--fs-small);
  color: #ccc;
}


/* FOOTER  */

/* HOME SECTION */

/* SIGN UP PAGE */

/*  */


.auth-page {
  min-height: 100vh;
  background: radial-gradient(
    80% 80% at 50% 0%,
    rgba(242, 209, 107, 0.08),
    #0d1321 60%
  );
  display: flex;
  justify-content: center;
  padding-top: 140px; /* NAV BREATHING SPACE */
  font-family: 'Inter', sans-serif;
}

.auth-wrapper {
  width: 100%;
  max-width: 1100px;
  padding: 0 0px;
}

.auth-card {
  background: rgba(19, 32, 63, 0.85);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 60px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.auth-header {
  text-align: center;
  margin-bottom: 50px;
}

.auth-header h1 {
  font-size: 2.4rem;
  color: #f2d16b;
  margin-bottom: 12px;
}

.auth-header p {
  color: #cfd3dc;
  font-size: 1rem;
}

/* FORM */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full {
  width: 100%;
}

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

.form-group label {
  font-size: 0.85rem;
  color: #cfd3dc;
  margin-bottom: 8px;
}

.form-group input {
  height: 52px;
  border-radius: 12px;
  border: 1px solid rgba(242, 209, 107, 0.25);
  background: rgba(13, 19, 33, 0.8);
  color: #fff;
  padding: 0 16px;
  font-size: 0.95rem;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #f2d16b;
  box-shadow: 0 0 0 2px rgba(242, 209, 107, 0.25);
}

/* CHECKBOX */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  color: #cfd3dc;
}

.form-check input {
  margin-top: 4px;
}

.form-check a {
  color: #f2d16b;
  text-decoration: none;
}

.form-check a:hover {
  text-decoration: underline;
}

/* BUTTON */
.auth-btn {
  margin-top: 10px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f2d16b, #d8b85a);
  border: none;
  color: #0d1321;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.auth-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(242, 209, 107, 0.45);
}

/* FOOTER */
.auth-footer {
  text-align: center;
  font-size: 0.9rem;
  color: #cfd3dc;
}

.auth-footer a {
  color: #f2d16b;
  text-decoration: none;
}

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

/* RESPONSIVE */
@media (max-width: 768px) {
  .auth-card {
    padding: 40px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}


/*  */


/* SIGN UP PAGE */

/* LOGIN PAGE  */


.auth-page {
  min-height: 100vh;
  padding: 140px 20px 80px; /* NAV BREATHING SPACE */
  background: radial-gradient(
    circle at top,
    rgba(242, 209, 107, 0.08),
    #0d1321 45%
  );
  display: flex;
  justify-content: center;
  align-items: flex-start;
  font-family: 'Inter', sans-serif;
}

.auth-container {
  width: 100%;
  max-width: 520px;
}

/* ===== CARD ===== */
.auth-card {
  background: rgba(19, 32, 63, 0.85);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(242, 209, 107, 0.12);
}

/* ===== HEADINGS ===== */
.auth-card h1 {
  font-size: clamp(1.9rem, 3vw, 2.2rem);
  color: #f2d16b;
  margin-bottom: 10px;
}

.auth-subtext {
  font-size: 0.95rem;
  color: #cfd3e0;
  margin-bottom: 32px;
  line-height: 1.6;
}

/* ===== FORM ===== */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.85rem;
  color: #b9c0d9;
  margin-bottom: 6px;
}

.form-group input {
  background: #0d1321;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 14px 14px;
  font-size: 0.95rem;
  color: #fff;
  outline: none;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus {
  border-color: #f2d16b;
  box-shadow: 0 0 0 2px rgba(242, 209, 107, 0.2);
}

/* ===== OPTIONS ROW ===== */
.auth-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cfd3e0;
}

.checkbox input {
  accent-color: #f2d16b;
}

.forgot-link {
  color: #f2d16b;
  text-decoration: none;
}

.forgot-link:hover {
  text-decoration: underline;
}

/* ===== BUTTON ===== */
.auth-btn {
  margin-top: 10px;
  padding: 14px;
  border-radius: 12px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(
    135deg,
    #f2d16b,
    #e6bd4f
  );
  color: #0d1321;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.auth-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(242, 209, 107, 0.45);
}

/* ===== FOOTER TEXT ===== */
.auth-footer-text {
  margin-top: 18px;
  font-size: 0.9rem;
  color: #cfd3e0;
  text-align: center;
}

.auth-footer-text a {
  color: #f2d16b;
  text-decoration: none;
}

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

/* ===== MOBILE ===== */
@media (max-width: 480px) {
  .auth-card {
    padding: 32px 20px;
  }
}

/* LOGIN PAGE */


/* ABOUT US PAGE  */

/*  */


.about-hero {
  min-height: 85vh;
  padding-top: 140px; /* gives NAV breathing space */
  padding-bottom: 120px;
  background: radial-gradient(
      1200px 600px at 50% -10%,
      rgba(242, 209, 107, 0.08),
      transparent 60%
    ),
    #0d1321;
  display: flex;
  align-items: center;
}

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

.about-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242, 209, 107, 0.85);
}

.about-hero h1 {
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  line-height: 1.15;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
}

.about-hero p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  max-width: 720px;
  margin: 0 auto;
}


/*  */


/*  */

.about-core {
  padding: 120px 0px;
  background: #0d1321;
  color: #fff;
}

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

.about-core-text .eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-core-text h2 {
  font-size: var(--fs-h2);
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-core-text p {
  font-size: var(--fs-body);
  color: #cfd3dc;
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-core-visual {
  position: relative;
  width: 100%;
  max-width: 520px;
}

/* Image Card */
.image-card {
  position: relative;
  width: 100%;
  height: 360px;
  border-radius: 20px;
  overflow: hidden;

  background: #111a33;

  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.6),
    inset 0 0 0 1px rgba(242, 209, 107, 0.15);
}

/* Image itself */
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Premium overlay (very subtle) */
.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(242, 209, 107, 0.18),
      rgba(17, 26, 51, 0.55) 60%
    );
  pointer-events: none;
}

@media (max-width: 900px) {
  .about-core-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .abstract-card {
    height: 260px;
  }
}

.map-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(242, 209, 107, 0.9);
  box-shadow: 0 0 12px rgba(242, 209, 107, 0.4);
  animation: pulse 3.5s ease-in-out infinite;
}

/* Example placements */
.dot-1 { top: 38%; left: 48%; }
.dot-2 { top: 22%; left: 70%; animation-delay: 1s; }
.dot-3 { top: 19%; left: 80%; animation-delay: 2s; }
.dot-4 { top: 25%; left: 10%; animation-delay: 2s; }
.dot-5 { top: 74%; left: 20%; animation-delay: 2s; }
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.4);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
}


/*  */

/*  */

.about-values {
  padding: 120px 0;
  background: #0b1020;
}

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

.value-card {
  background: #111a33;
  padding: 40px;
  border-radius: 18px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 45px 90px rgba(0,0,0,0.6);
}

.value-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f2d16b;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 14px;
}

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

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


/*  */

/*  */

.crypto-info{
  background: #0d1321;;
  padding: 60px 0px;
}

.crypto-info-list{
  display: flex;
  justify-content: center;
  gap: 50px;
  justify-content: space-between;
}

.crypto-text{
  max-width: 50%;
  justify-content: center;
  align-items: center;
  align-self: center;
}

.crypto-text h2{
  color: var(--color-text-main);
}

.crypto-image-wrap img{
  width:  100%;
}


/*  */

/* ABOUT US PAGE */


/* CRYPTO TRADING PAGE */


.trading-hero {
  padding: 150px 0 120px;
  background:
    radial-gradient(800px 400px at 10% 20%, rgba(242,209,107,0.08), transparent 60%),
    #0d1321;
  color: #fff;
  overflow: hidden;
}

.trading-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

/* LEFT */
.trading-hero-text .eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242,209,107,0.85);
  margin-bottom: 18px;
}

.trading-hero-text h1 {
  font-size: clamp(2.8rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 24px;
}

.trading-hero-text h1 span {
  display: block;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
}

.trading-hero-text p {
  max-width: 520px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
}

.trading-hero-actions {
  display: flex;
  gap: 18px;
}

/* BUTTONS */
.btn-primary {
  padding: 14px 30px;
  border-radius: 10px;
  background: linear-gradient(135deg, #f2d16b, #c9a84f);
  color: #0b1020;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 20px 40px rgba(242,209,107,0.25);
}

.btn-secondary {
  padding: 14px 30px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  text-decoration: none;
  backdrop-filter: blur(6px);
}

/* RIGHT VISUAL */

.crypto-image-wrap img{
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md)
}


/*  */

/*  */

.why-us-section{
  padding: 80px 0px;
  background:var(--color-bg-main);
}

.why-us-title{
  color: var(--color-text-main);
  font-size: var(--fs-h2);
  font-family: var(--font-heading);
  text-align: center;
}

.why-us-list{
  max-width: 900px;
  display: grid;
  margin: 0 auto;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 0px 30px;
}

.whys-us-item{
 background: #111a33;
  padding: 30px 10px;
  border-radius: 18px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whys-us-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 45px 90px rgba(0,0,0,0.6);
}

.why-item-title{
  color: var(--color-text-main);
  font-size: var(--fs-h3);
  font-family: var(--font-heading);
  padding: 15px 0px;
}

.why-item-description{
  color: var(--color-text-muted);
  font-size: 16px;
  
}


/*  */

/*  */


.community-section{
  padding: 80px 0px;
  background-color: var(--color-bg-menu);
}

.w-container-sm{
  max-width: 1200px;
  margin: 0 auto !important;
}

.w-grid-2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.title-heading{
  font-size: 30px;
  font-family: var(--font-heading);
  color: var(--color-text-main);
  font-weight: var(--fw-medium);
  
}

.all-image{
  max-width: 100%;
  height: auto;
}

.w-grid-item{
  justify-content: center;
  display: flex;
  flex-direction: column;
  vertical-align: middle;
}

.text-description{
  font-size: var(--fs-body-lg);
  color: var(--color-text-muted);
  padding: 30px 0px;
}

.community-cta{
  max-width: 250px;
  text-align: center;
}

/*  */

/*  */

.faq-section-2{
  color: #fff;
  background-color: var(--color-bg-main);
  padding: 80px 0px;
}

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

.faq-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--color-text-main);
  margin-bottom: 40px;
}

.accordion-item {
  background: #111a33;
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  transition: transform 0.3s ease;
}

.accordion-item:hover {
  transform: translateY(-3px);
}

.accordion-header {
  width: 100%;
  padding: 20px 25px;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: left;
  background: none;
  border: none;
  color: var(--color-btn-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

.accordion-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  background: var(--color-text-main);
  color: var(--color-btn-text);
  font-size: 1.2rem;
  line-height: 1.6;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-item.active .accordion-content {
  max-height: 500px; /* adjust depending on content */
  padding: 15px 25px 25px 25px;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}



/*  */


/* CRYPTO TRADING PAGE */

/* PLANS PAGE */


.plans-hero {
  background:
    radial-gradient(80% 80% at 70% 20%, rgba(242,209,107,0.08), transparent 60%),
    #0b1224;
  padding: 150px 20px 130px;
  color: #fff;
}

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

/* TEXT SIDE */

.plans-hero-text .eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242,209,107,0.9);
}

.plans-hero-text h1 {
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 22px;
}

.plans-hero-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
}

/* CTA */

.plans-hero-cta {
  margin-top: 34px;
  display: flex;
  gap: 18px;
}

.btn-primary {
  padding: 14px 28px;
  background: linear-gradient(135deg, #f2d16b, #d9b44a);
  color: #0b1224;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(242,209,107,0.35);
}

.btn-secondary {
  padding: 14px 26px;
  border: 1px solid rgba(242,209,107,0.4);
  border-radius: 12px;
  color: #f2d16b;
  text-decoration: none;
  transition: background 0.25s ease;
}

.btn-secondary:hover {
  background: rgba(242,209,107,0.08);
}

/* VISUAL CARD */

.plans-hero-visual {
  display: flex;
  justify-content: center;
}

.plans-glass-card {
  width: 100%;
  max-width: 420px;
  padding: 34px 32px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(242,209,107,0.15), transparent 60%),
    rgba(17,26,51,0.9);
  backdrop-filter: blur(12px);
  box-shadow:
    0 50px 120px rgba(0,0,0,0.7),
    inset 0 0 0 1px rgba(242,209,107,0.2);
}

.plans-glass-card .stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.plans-glass-card .label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

.plans-glass-card strong {
  font-size: 1.4rem;
  color: #f2d16b;
}

.divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 20px 0;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .plans-hero-container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .plans-hero-text p {
    margin: 0 auto;
  }

  .plans-hero-cta {
    justify-content: center;
    flex-wrap: wrap;
  }
}



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

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.faq-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.faq-intro p {
  color: rgba(255,255,255,0.65);
  max-width: 420px;
  line-height: 1.6;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #111a33;
  border-radius: 16px;
  box-shadow:
    0 30px 60px rgba(0,0,0,0.6),
    inset 0 0 0 1px rgba(242,209,107,0.12);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 22px 26px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

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

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: #f2d16b;
  transition: transform 0.4s ease;
}

.faq-icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.faq-icon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.faq-item.active .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
}

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

.faq-answer p {
  padding: 0 26px 26px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .faq-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}


/* PLANS PAGE */

/* HOW IT WORKS PAGE */


.how-hero {
  padding: 160px 6vw 120px;
  background: radial-gradient(
    1200px at 20% 10%,
    rgba(242,209,107,0.08),
    transparent 60%
  ),
  #0b1224;
}

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

/* TEXT SIDE */

.how-hero-text .eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(242,209,107,0.85);
  margin-bottom: 16px;
}

.how-hero-text h1 {
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 20px;
}

.how-hero-text p {
  max-width: 520px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* STEP PILLS */

.how-hero-steps {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.step-pill {
  padding: 10px 16px;
  font-size: 0.85rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(242,209,107,0.18);
  backdrop-filter: blur(8px);
  color: white !important;
}

.step-divider {
  width: 24px;
  height: 1px;
  background: rgba(242,209,107,0.3);
}

/* VISUAL SIDE */

.how-hero-visual {
  display: flex;
  justify-content: center;
}

.how-glass-card {
  position: relative;
  width: 280px;
  height: 420px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(242,209,107,0.12), transparent 60%),
    rgba(17,26,51,0.9);
  box-shadow:
    0 50px 120px rgba(0,0,0,0.7),
    inset 0 0 0 1px rgba(242,209,107,0.18);
}

/* FLOW LINE */

.flow-line {
  position: absolute;
  left: 50%;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(242,209,107,0.6),
    rgba(242,209,107,0.1)
  );
  transform: translateX(-50%);
}

/* NODES */

.flow-node {
  position: absolute;
  left: 50%;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #0b1224;
  border: 1px solid rgba(242,209,107,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transform: translateX(-50%);
}

.flow-node.active {
  background: rgba(242,209,107,0.15);
  border-color: rgba(242,209,107,0.6);
  color: #f2d16b;
}

.flow-node:nth-child(2) { top: 60px; }
.flow-node:nth-child(3) { top: 150px; }
.flow-node:nth-child(4) { top: 240px; }
.flow-node:nth-child(5) { top: 330px; }

/* RESPONSIVE */

@media (max-width: 900px) {
  .how-hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .how-hero-visual {
    order: -1;
  }
}



/* HOW IT WORKS PAGE  */


/* CONTACT PAGE */


.contact-hero {
  background: linear-gradient(135deg, rgba(242,209,107,0.1), #0c1a33);
  padding: 170px 20px 100px;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.contact-hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-text {
  flex: 1 1 500px;
}

.contact-text h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #f2d16b;
  margin-bottom: 20px;
}

.contact-text p {
  font-size: 1.125rem;
  color: #e0e0e0;
  line-height: 1.8;
  margin-bottom: 30px;
}

.btn-primary {
  display: inline-block;
  padding: 14px 30px;
  background-color: #f2d16b;
  color: #111a33;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #e6c05a;
  transform: translateY(-2px);
}

.contact-hero-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.contact-hero-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(242,209,107,0.15);
}

.contact-form-section {
  background: #111a33;
  padding: 80px 20px;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.contact-form-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.contact-form-intro {
  text-align: center;
  margin-bottom: 50px;
}

.contact-form-intro h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: #f2d16b;
  margin-bottom: 15px;
}

.contact-form-intro p {
  color: #ccc;
  font-size: 1.125rem;
  line-height: 1.7;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-row input,
.form-row textarea {
  flex: 1 1 100%;
  padding: 15px 20px;
  border-radius: 12px;
  border: none;
  background: rgba(242,209,107,0.05);
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  background: rgba(242,209,107,0.12);
  box-shadow: 0 0 15px rgba(242,209,107,0.3);
}

textarea {
  resize: none;
}

.checkbox-row {
  align-items: center;
  font-size: 0.95rem;
  color: #ccc;
}

.checkbox-row input {
  margin-right: 10px;
  accent-color: #f2d16b;
}

.btn-primary {
  padding: 15px 30px;
  background-color: #f2d16b;
  color: #111a33;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #e6c05a;
  transform: translateY(-2px);
}




/* CONTACT PAGE */


