.investment-option {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px 20px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  }
  
  .investment-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .investment-option.premium {
    border: 2px solid #5798ef;
    transform: scale(1.05);
    z-index: 1;
  }
  
  .investment-option.premium:hover {
    transform: scale(1.05) translateY(-10px);
  }
  
  .popular-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #5798ef;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
  }
  
  .investment-returns {
    margin: 20px 0;
  }
  
  .return-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .return-item.highlight {
    font-weight: bold;
    color: #151515;
    border-bottom: 2px solid #5798ef;
  }
  
  .return-value {
    color: #5798ef;
  }
  
  .icon-box {
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  }


/* calculatro invest*/

  .calculator-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  }
  
  .investment-amount {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 500;
  }
  
  .amount-value {
    font-weight: 700;
    color: #5798ef;
  }
  
  .range-slider-wrapper {
    margin-bottom: 30px;
    padding: 0 10px;
  }
  
  .range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: #e0e0e0;
    outline: none;
    margin-bottom: 10px;
  }
  
  .range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #5798ef;
    cursor: pointer;
    box-shadow: 0 0 0 4px rgba(87, 152, 239, 0.2);
    transition: all 0.2s ease;
  }
  
  .range-slider::-webkit-slider-thumb:hover {
    box-shadow: 0 0 0 6px rgba(87, 152, 239, 0.3);
  }
  
  .range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #888888;
  }
  
  .returns-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  
  .return-box {
    flex: 1;
    padding: 15px 10px;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin: 0 5px;
    transition: all 0.3s ease;
  }
  
  .return-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }
  
  .return-box.highlight {
    background-color: #eef5ff;
    border: 1px solid #d0e1f9;
  }
  
  .return-period {
    font-size: 14px;
    color: #777777;
    margin-bottom: 5px;
  }
  
  .return-amount {
    font-size: 18px;
    font-weight: 700;
    color: #5798ef;
  }

  /**/

  .investment-card {
    position: relative;
    transition: transform 0.3s ease;
  }
  
  .investment-card:hover {
    transform: translateY(-5px);
  }
  
  .investment-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
  }
  
  .investment-badge i {
    margin-right: 8px;
  }
  
  .investment-metrics {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background: #f8f9fa;
  }
  
  .metric-item {
    font-size: 0.9em;
    color: #666;
  }
  
  .investment-desc {
    padding: 15px;
    min-height: 80px;
  }

  /**/

  .investment-highlights {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
  }
  
  .highlight-item {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.15);
    border-radius: 30px;
    padding: 8px 20px;
    color: white;
    font-weight: 500;
  }
  
  .highlight-item i {
    margin-right: 8px;
    color: #ffd700;
  }
  
  .badge-light {
    background-color: rgba(255,255,255,0.9);
    color: #333;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8em;
  }
  
  .badge-light i {
    color: var(--primary);
  }






  .crypto-section {
    padding: 100px 0;
    color: white;
  }
  
  .crypto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
  }
  
  .floating-btc, .floating-eth, .floating-bnb {
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
  }
  
  .floating-eth {
    animation-delay: 1s;
  }
  
  .floating-bnb {
    animation-delay: 2s;
  }
  
  @keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
  }



  /* lang btn*/
  .language-selector {
    position: relative;
    display: inline-block;
  }

  .language-selector select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: black;
    padding: 10px 16px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    outline: none;
    min-width: 100px;
  }

  .language-selector select:focus {
    border-color: rgba(255, 255, 255, 0.5);
  }

  .language-selector select option {
    background: white;
    color: black;
  }
  /** g2 **/


  .g2-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.g2-section::before {
    content: '';
    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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="90" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.section-title p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.g2-widget-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.g2-badge-section {
    text-align: center;
}

.g2-main-badge {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: translateY(0);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.g2-main-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6F3D, #FF8F6B);
}

.g2-main-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.g2-logo {
    width: 80px;
    height: 80px;
    background: #FF6F3D;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: 900;
    font-size: 24px;
    color: white;
    box-shadow: 0 8px 20px rgba(255,111,61,0.3);
}

.rating-score {
    font-size: 3.5rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.rating-stars {
    font-size: 28px;
    color: #FFD700;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.review-count {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
}

.g2-link {
    display: inline-block;
    background: linear-gradient(135deg, #FF6F3D, #FF8F6B);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,111,61,0.3);
}

.g2-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,111,61,0.4);
}

.reviews-preview {
    display: grid;
    gap: 20px;
}

.review-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #FF6F3D;
}

.review-card:hover {
    transform: translateX(5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    margin-right: 12px;
}

.reviewer-info h4 {
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.reviewer-info p {
    font-size: 0.85rem;
    color: #666;
}

.review-stars {
    color: #FFD700;
    font-size: 16px;
    margin-bottom: 12px;
}

.review-text {
    color: #444;
    line-height: 1.6;
    font-size: 0.95rem;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.trust-indicator {
    text-align: center;
    color: rgba(255,255,255,0.9);
}

.trust-indicator .number {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.trust-indicator .label {
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .g2-widget-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .g2-main-badge {
        padding: 30px;
    }
    
    .trust-indicators {
        gap: 20px;
    }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.fade-in {
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}