/* ========================================
   INVESTMENT PLAN & PROFIT CALCULATOR
   NO ROTATING ANIMATIONS - SIMPLE EFFECTS
   ======================================== */

#plans.section {
    position: relative;
    min-height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-sizing: border-box;
    background: #1a1a1a;
}

#plans .container {
    width: 100%;
    max-width: 1700px;
    margin: 0 auto;
    padding: 2rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: auto;
    justify-content: center;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
    flex-shrink: 0;
}

.section-header .badge {
    display: inline-block;
    padding: 6px 20px;
    font-size: 0.65rem;
    background: transparent;
    color: #FFD700;
    border: 1.5px solid #FFD700;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
}

.section-header p {
    font-size: 0.95rem;
    color: #CCCCCC;
    margin: 0;
    line-height: 1.4;
}

.investment-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-height: 500px;
    height: 500px;
    box-sizing: border-box;
}

/* ========================================
   LEFT - PLAN CARD (SIMPLE BLUR)
   ======================================== */

.plan-highlight-card {
    background: rgba(138, 116, 45, 0.28);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 2px solid #FFD700;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    box-sizing: border-box;
    transition: all 0.4s ease;
}

/* Static background - NO animation */
.plan-highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

/* Shimmer effect on hover */
.plan-highlight-card::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    transform: skewX(-20deg);
    transition: left 0.7s ease;
}

.plan-highlight-card:hover::after {
    left: 150%;
}

.plan-highlight-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.35);
    border-color: rgba(255, 215, 0, 0.9);
}

.premium-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.65rem;
    letter-spacing: 2px;
    z-index: 10;
}

.plan-icon {
    margin-bottom: 1rem;
    position: relative;
    z-index: 5;
}

.plan-icon canvas {
    width: 80px !important;
    height: 80px !important;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
}

.plan-percentage {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 0.9;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
    letter-spacing: -4px;
    position: relative;
    z-index: 5;
    transition: transform 0.3s ease;
}

.plan-highlight-card:hover .plan-percentage {
    transform: scale(1.05);
}

.plan-label {
    font-size: 1rem;
    color: #FFD700;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
    z-index: 5;
}

.plan-label::before,
.plan-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #FFD700);
}

.plan-label::before {
    right: calc(100% + 10px);
}

.plan-label::after {
    left: calc(100% + 10px);
    background: linear-gradient(90deg, #FFD700, transparent);
}

.plan-duration {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #FFD700;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    color: #FFD700;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 5;
    transition: all 0.3s ease;
    cursor: pointer;
}

.plan-duration:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.05);
}

.plan-divider {
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    margin: 1rem 0;
    position: relative;
    z-index: 5;
}

.plan-meta {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.meta-item {
    text-align: center;
    position: relative;
    padding: 0.7rem 1rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.meta-item:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.meta-value {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.3rem;
    line-height: 1;
}

.meta-label {
    font-size: 0.65rem;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ========================================
   RIGHT - CALCULATOR
   ======================================== */

.calculator-section {
    display: flex;
    flex-direction: column;
    gap: 0;
    height: 100%;
    box-sizing: border-box;
}

.calculator-card {
    background: #1a1a1a;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 1.8rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
}

.calculator-card:hover {
    border-color: rgba(255, 215, 0, 0.5);
}

.calculator-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.calculator-header canvas {
    width: 32px !important;
    height: 32px !important;
}

.calculator-header h3 {
    margin: 0 0 0.2rem 0;
    font-size: 1.3rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.calculator-header p {
    margin: 0;
    color: #CCCCCC;
    font-size: 0.75rem;
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    flex: 1;
}

.calc-input-wrapper {
    grid-column: span 2;
}

.calc-input-wrapper label {
    display: block;
    margin-bottom: 0.5rem;
    color: #FFD700;
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.input-with-icon {
    position: relative;
}

.input-with-icon .input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px !important;
    height: 20px !important;
}

.input-with-icon input {
    width: 100%;
    padding: 0.9rem 0.9rem 0.9rem 44px;
    background: #0a0a0a;
    border: 1.5px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.input-with-icon input:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.15);
}

.quick-amounts-grid {
    grid-column: span 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
}

.quick-btn {
    padding: 0.75rem;
    background: #2a2a2a;
    border: 1.5px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    color: #999999;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.quick-btn:hover,
.quick-btn.active {
    background: #FFD700;
    color: #1a1a1a;
    border-color: #FFD700;
    transform: translateY(-2px);
}

.calc-result-box {
    background: #2a2a2a;
    padding: 1rem;
    border-radius: 10px;
    border: 1.5px solid rgba(255, 215, 0, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.calc-result-box:hover {
    border-color: #FFD700;
    transform: translateY(-2px);
}

.calc-result-box.highlight {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(138, 116, 45, 0.3) 0%, rgba(97, 82, 32, 0.2) 100%);
    border-color: #FFD700;
    border-width: 2px;
    padding: 1.2rem;
}

.result-icon-top {
    margin-bottom: 0.5rem;
}

.result-icon-top canvas {
    width: 24px !important;
    height: 24px !important;
}

.calc-result-label {
    font-size: 0.65rem;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    display: block;
    font-weight: 600;
}

.calc-result-value {
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.calc-result-box.highlight .calc-result-value {
    font-size: 1.6rem;
}

.calc-cta {
    display: none;
}

.features-row {
    display: none;
}

#plans.section + section {
    position: relative;
    clear: both;
    z-index: 1;
}

/* Responsive */
@media (max-width: 1200px) {
    #plans.section {
        min-height: auto;
        max-height: none;
        padding: 80px 0 60px 0;
    }
    
    .investment-wrapper {
        grid-template-columns: 1fr;
        max-height: none;
        height: auto;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .calculator-grid {
        grid-template-columns: 1fr;
    }
    
    .calc-input-wrapper,
    .quick-amounts-grid,
    .calc-result-box,
    .calc-result-box.highlight {
        grid-column: span 1;
    }
    
    .quick-amounts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
