body {
  margin: 0;
  padding: 0;
  background: #0a101a;
  color: #fff;
  font-family: 'Poppins', Arial, sans-serif;
}

.hero-section,
.about-section,
.plans-section,
.why-section,
.how-section,
.testimonials-section,
.newsletter-section,
.footer-section {
  background: #0a101a !important;
}

.hero-section {
  position: relative;
  background: #10172b;
  min-height: 520px;
  overflow: hidden;
  padding-bottom: 0;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url('https://www.goldentltd.com/asset/theme4/images/banner/6468754fb18591684567375.jpg') right center/cover no-repeat;
  z-index: 1;
}

.hero-logo-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0.7;
}

.hero-logo-bg i.fas.fa-coins {
  font-size: 8rem;
  color: rgba(255, 153, 0, 0.3);
  margin-bottom: 1rem;
  animation: float 6s ease-in-out infinite;
}

.hero-logo-bg span {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255, 153, 0, 0.4);
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  z-index: 2;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 4vw 6vw 0 6vw;
}
.hero-text {
  max-width: 600px;
  z-index: 2;
}
.hero-text h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #fff;
  line-height: 1.1;
}
.hero-text p {
  font-size: 1.25rem;
  margin-bottom: 2.2rem;
  color: #bfc6e0;
}
.hero-buttons {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2.2rem;
}
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2.2rem;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.stat-value {
  font-size: 2.1rem;
  font-weight: 700;
  color: #ff9900;
}
.stat-label {
  font-size: 1.05rem;
  color: #bfc6e0;
}
/* Remove old hero-image img rules */
.hero-image img { display: none !important; }

.navbar {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 6vw 0 6vw;
}
.logo {
  font-size: 2rem;
  font-weight: 700;
  color: #ff9900;
  letter-spacing: 1px;
}
ul.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.2s;
}
ul.nav-links li a:hover {
  color: #ff9900;
}
.nav-actions {
  display: flex;
  gap: 1rem;
}
.button {
  background: transparent;
  border: 1px solid #ff9900;
  color: #ff9900;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  font-size: 1rem;
}
.button.orange, .button:hover {
  background: #ff9900;
  color: #fff;
}
.language {
  background: #181f36;
  color: #fff;
  border: 1px solid #333;
  border-radius: 6px;
  padding: 0.5rem 1rem;
  cursor: pointer;
}

/* NAVBAR and HERO LAYOUT TWEAKS */
@media (max-width: 1100px) {
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    padding-top: 6vw;
  }
  .hero-bg {
    width: 100%;
    min-width: 0;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    max-height: none;
    opacity: 0.25;
    background-position: center top;
  }
}
@media (max-width: 700px) {
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    padding-top: 10vw;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
  .hero-bg {
    width: 100%;
    min-width: 0;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    max-height: none;
    opacity: 0.18;
    background-position: center top;
  }
}

/* Professional GitHub-style Crypto Ticker */
.ticker-bar {
  background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
  color: #e6edf3;
  padding: 1rem 0;
  margin-top: 2vw;
  overflow: hidden;
  position: relative;
  border-top: 1px solid #30363d;
  border-bottom: 1px solid #30363d;
  backdrop-filter: blur(10px);
}

.crypto-ticker {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  will-change: transform;
  animation: scroll-infinite 80s linear infinite;
}

/* Smooth infinite scroll animation */
@keyframes scroll-infinite {
  0% { 
    transform: translateX(0); 
  }
  100% { 
    transform: translateX(-50%); 
  }
}

.crypto-coin {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: rgba(33, 38, 45, 0.6);
  border: 1px solid #30363d;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 200px;
  position: relative;
  flex-shrink: 0;
  backdrop-filter: blur(8px);
}

.crypto-coin:hover {
  background: rgba(33, 38, 45, 0.8);
  border-color: #58a6ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(88, 166, 255, 0.15);
}

.coin-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #30363d;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.coin-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.coin-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 60px;
}

.coin-symbol {
  font-weight: 600;
  font-size: 0.875rem;
  color: #e6edf3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
}

.coin-name {
  font-size: 0.75rem;
  color: #7d8590;
  font-weight: 400;
  opacity: 0.9;
  line-height: 1;
}

.coin-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
  text-align: right;
}

.price {
  font-weight: 600;
  font-size: 0.875rem;
  color: #e6edf3;
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Consolas, "Liberation Mono", Menlo, monospace;
  line-height: 1;
}

.change {
  font-size: 0.75rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Consolas, "Liberation Mono", Menlo, monospace;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  line-height: 1;
}

.change.positive {
  color: #3fb950;
  background: rgba(63, 185, 80, 0.1);
}

.change.negative {
  color: #f85149;
  background: rgba(248, 81, 73, 0.1);
}

.change-icon {
  font-size: 0.65rem;
}

.crypto-coin.loading {
  justify-content: center;
  min-width: 250px;
  background: rgba(33, 38, 45, 0.4);
  border-color: #30363d;
  color: #7d8590;
}

.crypto-coin.error {
  background: rgba(248, 81, 73, 0.1);
  border-color: #f85149;
}

.crypto-coin.error .coin-symbol {
  color: #f85149;
}

.crypto-coin.error .price {
  color: #f85149;
}

/* Pause animation on hover */
.ticker-bar:hover .crypto-ticker {
  animation-play-state: paused;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .ticker-bar {
    padding: 0.75rem 0;
  }
  
  .crypto-ticker {
    gap: 1.5rem;
  }
  
  .crypto-coin {
    min-width: 160px;
    padding: 0.5rem 1rem;
    gap: 0.5rem;
  }
  
  .coin-icon {
    width: 20px;
    height: 20px;
  }
  
  .coin-symbol {
    font-size: 0.8rem;
  }
  
  .coin-name {
    font-size: 0.65rem;
  }
  
  .price {
    font-size: 0.8rem;
  }
  
  .change {
    font-size: 0.7rem;
    padding: 0.1rem 0.3rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .crypto-ticker {
    animation-duration: 200s;
  }
}

/* Loading state improvements */
.crypto-coin.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(88, 166, 255, 0.1) 50%, 
    transparent 100%);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.about-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4vw;
  padding: 6vw 6vw 4vw 6vw;
  background: #10173a;
}
.about-image img {
  width: 220px;
  max-width: 40vw;
  filter: drop-shadow(0 0 30px #ff9900cc);
}
.about-image.animated-bitcoin {
  position: relative;
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
.about-image.animated-bitcoin img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 160px;
  height: 160px;
  transform: translate(-50%, -50%);
  z-index: 2;
  filter: drop-shadow(0 0 32px #ff990055);
}
.orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}
.orbit1 {
  width: 230px !important;
  height: 230px !important;
  animation: orbit-rotate1 6s linear infinite;
}
.orbit2 {
  width: 180px !important;
  height: 180px !important;
  animation: orbit-rotate2 9s linear reverse infinite;
}
@keyframes orbit-rotate1 {
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes orbit-rotate2 {
  100% { transform: translate(-50%, -50%) rotate(-360deg); }
}
.orbit-ball {
  position: absolute;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  z-index: 3;
  box-shadow: 0 0 8px #ff9900aa;
}
.ball1 {
  background: #ff9900;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: ball1-orbit 6s linear infinite;
}
.ball2 {
  background: #fff;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  animation: ball2-orbit 9s linear reverse infinite;
}
@keyframes ball1-orbit {
  0%   { top: 10px; left: 50%; }
  25%  { top: 50%; left: 230px; }
  50%  { top: 230px; left: 50%; }
  75%  { top: 50%; left: 10px; }
  100% { top: 10px; left: 50%; }
}
@keyframes ball2-orbit {
  0%   { left: 10px; top: 50%; }
  25%  { left: 50%; top: 10px; }
  50%  { left: 230px; top: 50%; }
  75%  { left: 50%; top: 230px; }
  100% { left: 10px; top: 50%; }
}
.about-content {
  max-width: 700px;
}
.about-content h2 {
  font-size: 2.2rem;
  color: #ff9900;
  margin-bottom: 1rem;
}
.about-content p {
  color: #bfc6e0;
  margin-bottom: 0.7rem;
  font-size: 1.1rem;
}
.about-content .button {
  margin-top: 1.5rem;
}

/* Investment Plans - Mobile-Optimized Professional Styling */

/* Hero Section Enhancement */
.hero-section {
  background: linear-gradient(135deg, #0a101a 0%, #1a2040 50%, #0a101a 100%);
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 153, 0, 0.1) 0%, transparent 70%);
  z-index: 1;
}

.hero-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1rem;
}

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  background: linear-gradient(45deg, #ffffff, #ff9900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero-text p {
  font-size: clamp(1rem, 3vw, 1.2rem);
  color: #bfc6e0;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="grad1" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:%23ff9900;stop-opacity:0.1"/><stop offset="100%" style="stop-color:%23ff9900;stop-opacity:0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23grad1)"/><circle cx="800" cy="300" r="150" fill="url(%23grad1)"/><circle cx="400" cy="700" r="120" fill="url(%23grad1)"/></svg>');
  opacity: 0.3;
  z-index: 0;
}

/* Investment Plans Section - Premium Modern Design */
.plans-section {
  background: #0a101a;
  padding: 4rem 1rem 3rem;
  position: relative;
  overflow: hidden;
}

.plans-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top, rgba(255, 153, 0, 0.05) 0%, transparent 70%);
  z-index: 1;
}

.plans-section h2 {
  text-align: center;
  font-size: clamp(2rem, 6vw, 2.8rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
  background: linear-gradient(45deg, #ffffff, #ff9900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.plans-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ff9900, transparent);
  border-radius: 2px;
}

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.plan {
  background: linear-gradient(145deg, #181f36 0%, #1a2040 100%);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.plan::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(145deg, rgba(255, 153, 0, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.plan:hover::before {
  opacity: 1;
}

.plan:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(255, 153, 0, 0.2);
}

/* Plan Type Specific Styling */
.plan.bronze {
  border-top: 4px solid #cd7f32;
}

.plan.bronze::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #cd7f32, #ff9900, #cd7f32);
}

.plan.silver {
  border-top: 4px solid #c0c0c0;
  position: relative;
}

.plan.silver::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #c0c0c0, #ffffff, #c0c0c0);
}

.plan.gold {
  border-top: 4px solid #ffd700;
  position: relative;
}

.plan.gold::after {
  content: 'MOST POPULAR';
  position: absolute;
  top: -15px;
  right: 15px;
  background: linear-gradient(45deg, #ffd700, #ff9900);
  color: #000;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.plan.gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ffed4a, #ffd700);
}

/* Plan Content Styling */
.plan > * {
  position: relative;
  z-index: 2;
}

.plan h3 {
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}

.plan.bronze h3 {
  color: #cd7f32;
}

.plan.silver h3 {
  color: #c0c0c0;
}

.plan.gold h3 {
  color: #ffd700;
}

.plan-rate {
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 800;
  color: #ff9900;
  text-align: center;
  margin-bottom: 0.5rem;
  display: block;
  text-shadow: 0 2px 10px rgba(255, 153, 0, 0.3);
  line-height: 1.1;
}

.plan-period {
  color: #bfc6e0;
  text-align: center;
  font-size: clamp(1rem, 3vw, 1.1rem);
  margin-bottom: 2rem;
  font-weight: 500;
}

.plan-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.plan-min,
.plan-max,
.plan-once,
.plan-capital {
  color: #ffffff;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border-left: 3px solid #ff9900;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  word-break: break-word;
}

.plan-min::before {
  content: '💰';
  font-size: 1.2rem;
  flex-shrink: 0;
}

.plan-max::before {
  content: '🎯';
  font-size: 1.2rem;
  flex-shrink: 0;
}

.plan-once::before {
  content: '🔄';
  font-size: 1.2rem;
  flex-shrink: 0;
}

.plan-capital::before {
  content: '✅';
  font-size: 1.2rem;
  flex-shrink: 0;
}

.plan-affiliate {
  color: #ff9900;
  font-size: clamp(1rem, 3vw, 1.1rem);
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
  padding: 1rem;
  background: rgba(255, 153, 0, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(255, 153, 0, 0.2);
}

.affiliate-levels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 0.5rem;
  margin-top: 1rem;
}

.affiliate-levels span {
  background: linear-gradient(45deg, #ff9900, #ffb84d);
  color: #000;
  padding: 0.5rem 0.8rem;
  border-radius: 20px;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  font-weight: 600;
  text-align: center;
  box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.affiliate-levels span:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 153, 0, 0.4);
}

/* Add Investment Button */
.plan-cta {
  margin-top: 2rem;
  text-align: center;
}

.invest-btn {
  background: linear-gradient(45deg, #ff9900, #ffb84d);
  color: #000;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: clamp(1rem, 3vw, 1.1rem);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 20px rgba(255, 153, 0, 0.3);
  width: 100%;
  position: relative;
  overflow: hidden;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.invest-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.invest-btn:hover::before {
  left: 100%;
}

.invest-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 153, 0, 0.4);
}

.invest-btn:active {
  transform: translateY(0);
}

/* Enhanced Mobile Breakpoints */
@media (max-width: 1200px) {
  .plans {
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 1.5rem;
  }
  
  .plans-section {
      padding: 5rem 1.5rem 3rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
      min-height: 40vh;
  }
  
  .hero-content {
      padding: 1.5rem 1rem;
  }
  
  .plans-section {
      padding: 3rem 0 2rem;
      margin: 0 auto; /* Center horizontally */
      max-width: 500px; /* Prevent overflow */
  }
  .plans {
      grid-template-columns: 1fr;
      gap: 1.5rem;
      max-width: 100vw;
      width: 100%;
      margin: 0 auto;
      padding: 0 0.5rem;
      box-sizing: border-box;
  }
  .plan {
      padding: 1.5rem 0.5rem;
      margin: 0 auto;
      width: 100%;
      min-width: 0;
      max-width: 100%;
      box-sizing: border-box;
      border-radius: 20px !important;
  }
  
  .plan.gold::after {
      right: 10px;
      padding: 0.3rem 0.6rem;
      font-size: 0.65rem;
  }
  
  .affiliate-levels {
      grid-template-columns: repeat(2, 1fr);
      gap: 0.5rem;
  }
  
  .plan-details {
      gap: 0.8rem;
  }
  
  .plan-min,
  .plan-max,
  .plan-once,
  .plan-capital {
      padding: 0.6rem 0.8rem;
      font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
      min-height: 35vh;
  }
  
  .hero-content {
      padding: 1rem 0.5rem;
  }
  
  .plans-section {
      margin: 0 auto;
      max-width: 350px;
  }
  
  .plans {
      gap: 1rem;
      max-width: 100vw;
      width: 100%;
      margin: 0 auto;
      padding: 0 0.2rem;
  }
  
  .plan {
      padding: 1.2rem 0.2rem;
      border-radius: 15px !important;
      width: 100%;
      min-width: 0;
      max-width: 100%;
      box-sizing: border-box;
  }
  
  .plan.gold::after {
      font-size: 0.6rem;
      padding: 0.25rem 0.5rem;
      right: 8px;
      top: -12px;
  }
  
  .affiliate-levels {
      grid-template-columns: 1fr;
      gap: 0.4rem;
  }
  
  .affiliate-levels span {
      padding: 0.4rem 0.6rem;
      font-size: 0.8rem;
  }
  
  .plan-details {
      gap: 0.6rem;
  }
  
  .plan-min,
  .plan-max,
  .plan-once,
  .plan-capital {
      padding: 0.5rem 0.6rem;
      font-size: 0.85rem;
  }
  
  .invest-btn {
      padding: 0.8rem 1.5rem;
      font-size: 0.95rem;
  }
}

@media (max-width: 360px) {
  .plans-section h2 {
      margin-bottom: 2rem;
  }
  
  .plans {
      max-width: 320px;
  }
  
  .plan {
      padding: 1rem;
  }
  
  .plan h3 {
      font-size: 1.3rem;
      margin-bottom: 0.8rem;
  }
  
  .plan-rate {
      font-size: 1.8rem;
  }
  
  .plan-period {
      font-size: 0.9rem;
      margin-bottom: 1.5rem;
  }
  
  .plan-affiliate {
      padding: 0.8rem;
      font-size: 0.95rem;
  }
  
  .affiliate-levels span {
      font-size: 0.75rem;
      padding: 0.3rem 0.5rem;
  }
}

/* Animation for page load */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.plan {
  animation: fadeInUp 0.6s ease-out;
}

.plan:nth-child(1) {
  animation-delay: 0.1s;
}

.plan:nth-child(2) {
  animation-delay: 0.2s;
}

.plan:nth-child(3) {
  animation-delay: 0.3s;
}

/* Subtle floating animation - disabled on mobile for performance */
@media (min-width: 769px) {
  @keyframes float {
      0%, 100% {
          transform: translateY(0);
      }
      50% {
          transform: translateY(-5px);
      }
  }
  
  .plan:hover {
      animation: float 3s ease-in-out infinite;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .plan:hover {
      transform: none;
      animation: none;
  }
  
  .invest-btn:hover {
      transform: none;
  }
  
  .affiliate-levels span:hover {
      transform: none;
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  .plan {
      animation: none;
  }
  
  .plan:hover {
      animation: none;
  }
  
  .invest-btn::before {
      transition: none;
  }
}

.why-section {
  background: #10173a;
  padding: 5vw 6vw 4vw 6vw;
  text-align: center;
}
.why-section h2 {
  color: #ff9900;
  font-size: 2.2rem;
  margin-bottom: 2rem;
}
.why-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2vw;
  justify-content: center;
}
.why-card {
  background: #181f36;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  min-width: 220px;
  max-width: 300px;
  margin-bottom: 2vw;
  box-shadow: 0 2px 16px #0002;
  color: #fff;
  text-align: left;
}
.why-card h3 {
  color: #ff9900;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.why-card p {
  color: #bfc6e0;
  font-size: 1rem;
}

.how-section {
  background: #0a1026;
  padding: 5vw 6vw 4vw 6vw;
  text-align: center;
}
.how-section h2 {
  color: #ff9900;
  font-size: 2.2rem;
  margin-bottom: 2rem;
}
.how-steps {
  display: flex;
  gap: 2vw;
  justify-content: center;
  flex-wrap: wrap;
}
.how-step {
  background: #181f36;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  min-width: 220px;
  max-width: 300px;
  margin-bottom: 2vw;
  box-shadow: 0 2px 16px #0002;
  color: #fff;
  text-align: left;
  position: relative;
}
.step-number {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #ff9900;
  color: #fff;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}
.how-step h3 {
  color: #ff9900;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  margin-top: 2.5rem;
}
.how-step p {
  color: #bfc6e0;
  font-size: 1rem;
}

.testimonials-section {
  background: #10173a;
  padding: 5vw 6vw 4vw 6vw;
  text-align: center;
}
.testimonials-section h2 {
  color: #ff9900;
  font-size: 2.2rem;
  margin-bottom: 2rem;
}
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 2vw;
  justify-content: center;
}
.testimonial {
  background: #181f36;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  min-width: 220px;
  max-width: 350px;
  margin-bottom: 2vw;
  box-shadow: 0 2px 16px #0002;
  color: #fff;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.testimonial p {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-user img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ff9900;
}
.user-info .name {
  font-weight: 700;
  color: #ff9900;
}
.user-info .role {
  color: #bfc6e0;
  font-size: 0.95rem;
}

.newsletter-section {
  background: #0a1026;
  padding: 4vw 6vw 4vw 6vw;
  text-align: center;
}
.newsletter-section h2 {
  color: #ff9900;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.newsletter-section p {
  color: #bfc6e0;
  margin-bottom: 1.5rem;
}
.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 500px;
  margin: 0 auto;
}
.newsletter-form input[type="email"] {
  padding: 0.8rem 1rem;
  border: none;
  border-radius: 6px 0 0 6px;
  font-size: 1rem;
  outline: none;
  width: 70%;
}
.newsletter-form button {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 0 6px 6px 0;
  background: #ff9900;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.newsletter-form button:hover {
  background: #e67c00;
}

.footer-section {
  background: #181f36;
  color: #fff;
  padding: 2vw 6vw 1vw 6vw;
  text-align: center;
}
.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2vw;
  margin-bottom: 1vw;
}
.footer-contact span {
  display: block;
  margin-bottom: 0.5rem;
  color: #bfc6e0;
}
.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  color: #ff9900;
}
.footer-social a {
  color: #fff;
  margin: 0 0.5rem;
  font-size: 1.3rem;
  transition: color 0.2s;
}
.footer-social a:hover {
  color: #ff9900;
}
.footer-links {
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: #bfc6e0;
  margin: 0 1rem;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #ff9900;
}
.footer-copyright {
  color: #bfc6e0;
  font-size: 0.95rem;
}

/* Responsive Styles */
@media (max-width: 1100px) {
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  .about-section {
    flex-direction: column;
    gap: 2vw;
    align-items: flex-start;
  }
  .plans, .why-cards, .how-steps, .testimonials {
    flex-direction: column;
    align-items: center;
    gap: 2vw;
  }
  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 1vw;
  }
}
@media (max-width: 700px) {
  .navbar, .hero-content, .about-section, .plans-section, .why-section, .how-section, .testimonials-section, .newsletter-section, .footer-section {
    padding-left: 4vw;
    padding-right: 4vw;
  }
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
  }
  .logo {
    font-size: 1.5rem;
  }
  ul.nav-links {
    display: none;
  }
  .nav-actions {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .plans, .why-cards, .how-steps, .testimonials {
    gap: 1vw;
  }
  .plan, .why-card, .how-step, .testimonial {
    min-width: 90vw;
    max-width: 98vw;
    padding: 1.2rem 0.7rem;
  }
  .newsletter-form {
    flex-direction: column;
    gap: 0.5rem;
  }
  .newsletter-form input[type="email"], .newsletter-form button {
    width: 100%;
    border-radius: 6px;
  }
}

/* Modern Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
  z-index: 1002;
  position: relative;
  transition: transform 0.3s ease;
}

.hamburger:hover {
  transform: scale(1.1);
}

.hamburger span {
  height: 3px;
  width: 100%;
  background: #ff9900;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 16, 26, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  text-align: center;
}

.mobile-nav ul li {
  margin: 2rem 0;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s ease;
}

.mobile-nav.open ul li {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav.open ul li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.open ul li:nth-child(2) { transition-delay: 0.2s; }
.mobile-nav.open ul li:nth-child(3) { transition-delay: 0.3s; }
.mobile-nav.open ul li:nth-child(4) { transition-delay: 0.4s; }
.mobile-nav.open ul li:nth-child(5) { transition-delay: 0.5s; }

.mobile-nav ul li a {
  color: #fff;
  font-size: 1.8rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.mobile-nav ul li a:hover {
  color: #ff9900;
  transform: scale(1.1);
}

.mobile-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 3px;
  background: #ff9900;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.mobile-nav ul li a:hover::after {
  width: 100%;
}

.mobile-nav .nav-actions {
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s ease;
}

.mobile-nav.open .nav-actions {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.mobile-nav .button {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 12px;
  min-width: 150px;
}

.mobile-nav .language {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 12px;
  min-width: 150px;
}

/* Update existing navbar styles */
.navbar {
  position: relative;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 6vw 0 6vw;
  transition: all 0.3s ease;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  color: #ff9900;
  letter-spacing: 1px;
  z-index: 1001;
}

.nav-actions {
  display: flex;
  gap: 1rem;
  z-index: 1001;
}

/* Enhanced button hover effects */
.button:hover {
  background: #ff9900;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 153, 0, 0.3);
}

.language:hover {
  background: #252c48;
  transform: translateY(-2px);
}

/* Add underline effect to desktop nav links */
ul.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff9900;
  transition: width 0.3s ease;
}

ul.nav-links li a:hover::after {
  width: 100%;
}

ul.nav-links li a {
  position: relative;
}

/* Responsive updates */
@media (max-width: 1100px) {
  .navbar {
    padding: 20px 4vw 0 4vw;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 18px 4vw 0 4vw;
  }
  
  .logo {
    font-size: 1.8rem;
  }
  
  ul.nav-links {
    display: none;
  }
  
  .nav-actions {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
}

/* Remove the old hamburger styles and replace with these modern ones */
.crypto-ticker {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  overflow-x: auto;
  white-space: nowrap;
  width: 100%;
  padding: 0.5rem 0;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.crypto-ticker::-webkit-scrollbar {
  display: none;
}
.crypto-coin {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(16,23,43,0.7);
  border-radius: 2rem;
  padding: 0.3rem 1.2rem;
  font-size: 1.08rem;
  font-weight: 500;
  color: #fff;
  box-shadow: 0 2px 8px #0002;
  transition: background 0.2s;
}
.crypto-coin img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  margin-right: 0.3rem;
  box-shadow: 0 0 6px #ff990055;
}
.crypto-price {
  color: #ff9900;
  font-weight: 600;
  margin-left: 0.5rem;
}
.crypto-change {
  margin-left: 0.5rem;
  font-weight: 600;
}
@media (max-width: 700px) {
  .crypto-ticker {
    gap: 1.2rem;
    font-size: 0.98rem;
    padding: 0.5rem 0.2rem;
  }
  .crypto-coin {
    padding: 0.2rem 0.7rem;
    font-size: 0.98rem;
  }
  .crypto-coin img {
    width: 22px;
    height: 22px;
  }
}

#loading-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #191919;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
#loading-overlay.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.loader {
  width: 64px;
  height: 64px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader::before, .loader::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 6px solid transparent;
  width: 48px;
  height: 48px;
  top: 8px;
  left: 8px;
}
.loader::before {
  border-top: 6px solid #ffb300;
  border-right: 6px solid #ffb300;
  animation: spin 1s linear infinite;
}
.loader::after {
  border-bottom: 6px solid #ffb300;
  border-left: 6px solid #ffb300;
  animation: spin 1s linear infinite reverse;
}
@keyframes spin {
  100% { transform: rotate(360deg); }
}

.why-section, .how-section, .testimonials-section {
  margin: 0 auto;
  max-width: 1400px;
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}

@media (max-width: 1200px) {
  .why-section, .how-section, .testimonials-section {
    max-width: 1000px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (max-width: 768px) {
  .why-section, .how-section, .testimonials-section {
    padding-left: 0;
    padding-right: 0;
    margin: 0 auto;
    max-width: 500px;
  }
}

@media (max-width: 480px) {
  .why-section, .how-section, .testimonials-section {
    padding-left: 0;
    padding-right: 0;
    margin: 0 auto;
    max-width: 350px;
  }
}

.plans {
  /* ...existing styles... */
  gap: 2rem !important; /* Ensure equal vertical and horizontal gap */
}

/* For column layout (mobile), ensure equal margin below each plan except the last */
@media (max-width: 1100px) {
  .plans {
    gap: 2rem !important;
  }
  .plan {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 768px) {
  .plans {
    gap: 2rem !important;
  }
  .plan {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 480px) {
  .plans {
    gap: 1.5rem !important;
  }
  .plan {
    margin-bottom: 0 !important;
  }
}


/* Mobile Layout Fixes - Replace existing mobile styles with these */

/* Base section styling - ensure consistent padding across all sections */
.plans-section,
.why-section,
.how-section,
.testimonials-section {
  padding: 4rem 1rem 3rem;
  margin: 0 auto;
  width: 100%;
  max-width: 1400px;
  box-sizing: border-box;
}

/* Container styling for consistent content width */
.plans,
.why-cards,
.how-steps,
.testimonials {
  display: grid;
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

/* Desktop grid layouts */
.plans {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.why-cards,
.how-steps,
.testimonials {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Large desktop styles */
@media (min-width: 1201px) {
  .plans-section,
  .why-section,
  .how-section,
  .testimonials-section {
    padding: 5rem 2rem 4rem;
  }
}

/* Medium desktop styles */
@media (max-width: 1200px) {
  .plans-section,
  .why-section,
  .how-section,
  .testimonials-section {
    padding: 4rem 1.5rem 3rem;
    max-width: 1000px;
  }
  
  .plans {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .why-cards,
  .how-steps,
  .testimonials {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

/* Small desktop/tablet styles */
@media (max-width: 900px) {
  .plans-section,
  .why-section,
  .how-section,
  .testimonials-section {
    padding: 3rem 1rem 2rem;
    max-width: 800px;
  }
  
  .plans,
  .why-cards,
  .how-steps,
  .testimonials {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }
}

/* Tablet styles */
@media (max-width: 768px) {
  .plans-section,
  .why-section,
  .how-section,
  .testimonials-section {
    padding: 3rem 1rem 2rem;
    max-width: 100%;
    margin: 0;
  }
  
  .plans,
  .why-cards,
  .how-steps,
  .testimonials {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }
  
  .plan,
  .why-card,
  .how-step,
  .testimonial {
    width: 100%;
    max-width: 100%;
    margin: 0;
    box-sizing: border-box;
  }
}

/* Mobile styles */
@media (max-width: 480px) {
  .plans-section,
  .why-section,
  .how-section,
  .testimonials-section {
    padding: 2rem 0.5rem 1.5rem;
    margin: 0;
    max-width: 100%;
  }
  
  .plans,
  .why-cards,
  .how-steps,
  .testimonials {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 100%;
    margin: 0;
    padding: 0 0.5rem;
  }
  
  .plan,
  .why-card,
  .how-step,
  .testimonial {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 1.5rem 1rem;
    box-sizing: border-box;
  }
}

/* Extra small mobile */
@media (max-width: 360px) {
  .plans-section,
  .why-section,
  .how-section,
  .testimonials-section {
    padding: 2rem 0.25rem 1.5rem;
  }
  
  .plans,
  .why-cards,
  .how-steps,
  .testimonials {
    padding: 0 0.25rem;
  }
  
  .plan,
  .why-card,
  .how-step,
  .testimonial {
    padding: 1.2rem 0.8rem;
  }
}

/* Remove the old problematic styles - Add these overrides */
.why-section,
.how-section,
.testimonials-section {
  margin: 0 auto !important;
  max-width: 1400px !important;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
  box-sizing: border-box !important;
}

@media (max-width: 1200px) {
  .why-section,
  .how-section,
  .testimonials-section {
    max-width: 1000px !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .why-section,
  .how-section,
  .testimonials-section {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    margin: 0 !important;
    max-width: 100% !important;
  }
}

@media (max-width: 480px) {
  .why-section,
  .how-section,
  .testimonials-section {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    margin: 0 !important;
    max-width: 100% !important;
  }
}

/* Fix the old responsive styles that were causing issues */
@media (max-width: 700px) {
  .plans-section,
  .why-section,
  .how-section,
  .testimonials-section,
  .newsletter-section,
  .footer-section {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .plans,
  .why-cards,
  .how-steps,
  .testimonials {
    gap: 1.5rem !important;
  }
  
  .plan,
  .why-card,
  .how-step,
  .testimonial {
    min-width: unset !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }
}

/* Ensure consistent spacing for mobile investment plans */
@media (max-width: 768px) {
  .plans-section {
    padding: 3rem 1rem 2rem !important;
    margin: 0 !important;
    max-width: 100% !important;
  }
  
  .plans {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }
  
  .plan {
    padding: 1.5rem 1rem !important;
    margin: 0 !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 480px) {
  .plans-section {
    padding: 2rem 0.5rem 1.5rem !important;
  }
  
  .plans {
    gap: 1rem !important;
    padding: 0 !important;
  }
  
  .plan {
    padding: 1.2rem 0.8rem !important;
  }
}

/* Modern Animated Visual for About Section (from about.css) */
.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 300px;
}
.crypto-visual {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.crypto-visual::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: conic-gradient(from 0deg, #ff9900, #ffb300, #ff9900);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
  opacity: 0.1;
}
.crypto-visual::after {
  content: '';
  position: absolute;
  width: 80%;
  height: 80%;
  background: conic-gradient(from 180deg, #fff, #bfc6e0, #fff);
  border-radius: 50%;
  animation: rotate 15s linear infinite reverse;
  opacity: 0.05;
}
.crypto-icon {
  position: relative;
  z-index: 3;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #ff9900, #ffb300);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(255, 153, 0, 0.3);
  animation: float 6s ease-in-out infinite;
}
.crypto-icon svg {
  width: 60px;
  height: 60px;
  color: #fff;
}
.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.floating-element {
  position: absolute;
  width: 20px;
  height: 20px;
  background: rgba(255, 153, 0, 0.2);
  border-radius: 50%;
  animation: float-random 8s ease-in-out infinite;
}
.floating-element:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}
.floating-element:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}
.floating-element:nth-child(3) {
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}
.floating-element:nth-child(4) {
  top: 40%;
  right: 30%;
  animation-delay: 6s;
}
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}
@keyframes float-random {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  25% { transform: translate(10px, -10px) scale(1.1); opacity: 0.5; }
  50% { transform: translate(-5px, -20px) scale(0.9); opacity: 0.7; }
  75% { transform: translate(-10px, 10px) scale(1.05); opacity: 0.4; }
}

