/* ============================================
   PLANS SECTION - PREMIUM LANDSCAPE DESIGN
   ============================================ */

.plans-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: transparent;
    padding: 100px 0;
    margin: 0;
    box-sizing: border-box;
    isolation: isolate;
    transform: translateZ(0);
    z-index: 1;
}

/* ============================================
   PLANS GRID - LANDSCAPE LAYOUT
   ============================================ */

.plans-grid-landscape {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

/* ============================================
   PLAN CARD - LANDSCAPE (HORIZONTAL)
   ============================================ */

.plan-card-landscape {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.plan-card-landscape:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

/* Featured Card */
.featured-landscape {
    border: 2px solid rgba(0, 212, 255, 0.5);
    background: rgba(0, 212, 255, 0.05);
    transform: scale(1.05);
}

.featured-landscape:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 212, 255, 0.3);
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: -1px;
    right: 30px;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 0 0 12px 12px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
    z-index: 10;
}

/* ============================================
   PLAN HEADER - LANDSCAPE
   ============================================ */

.plan-header-landscape {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-badge {
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 8px;
    letter-spacing: 1.5px;
}

.premium-badge {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.plan-roi {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.roi-label {
    font-size: 11px;
    color: #9ca3af;
    font-weight: 600;
    letter-spacing: 1px;
}

.roi-value {
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Saira', sans-serif;
}

/* ============================================
   PLAN BODY - LANDSCAPE
   ============================================ */

.plan-body-landscape {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.plan-rate-landscape {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 20px;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    gap: 15px;
}

.hourly-rate {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.rate-number {
    font-size: 52px;
    font-weight: 900;
    color: #00d4ff;
    line-height: 1;
    font-family: 'Saira', sans-serif;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.rate-label {
    font-size: 14px;
    color: #9ca3af;
    font-weight: 600;
    margin-top: 8px;
}

.plan-duration-landscape {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
}

.duration-number {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    font-family: 'Saira', sans-serif;
}

.duration-label {
    font-size: 14px;
    color: #9ca3af;
    font-weight: 600;
}

/* ============================================
   PLAN DETAILS - LANDSCAPE
   ============================================ */

.plan-details-landscape {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #d1d5db;
}

.detail-item i {
    color: #00d4ff;
    font-size: 14px;
    min-width: 16px;
}

/* ============================================
   PLAN BUTTON - LANDSCAPE
   ============================================ */

.plan-button-landscape {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Saira', sans-serif;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.plan-button-landscape::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.plan-button-landscape:hover::before {
    left: 100%;
}

.plan-button-landscape:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.4);
}

.featured-button-landscape {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.featured-button-landscape:hover {
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.4);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.plan-card-landscape {
    animation: slideInUp 0.6s ease-out;
}

.plan-card-landscape:nth-child(1) {
    animation-delay: 0.1s;
}

.plan-card-landscape:nth-child(2) {
    animation-delay: 0.2s;
}

.plan-card-landscape:nth-child(3) {
    animation-delay: 0.3s;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media screen and (max-width: 1200px) {
    .plans-grid-landscape {
        gap: 25px;
    }
    
    .rate-number {
        font-size: 36px;
    }
    
    .duration-number {
        font-size: 28px;
    }
}

@media screen and (max-width: 1024px) {
    .plans-section {
        height: auto;
        min-height: 700px;
        padding: 60px 0;
    }
    
    .plans-grid-landscape {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .featured-landscape {
        transform: scale(1);
    }
    
    .featured-landscape:hover {
        transform: translateY(-8px);
    }
}

@media screen and (max-width: 768px) {
    .plans-section {
        padding: 50px 0;
    }
    
    .plan-card-landscape {
        padding: 25px;
    }
    
    .rate-number {
        font-size: 32px;
    }
    
    .duration-number {
        font-size: 24px;
    }
    
    .plan-button-landscape {
        padding: 14px 20px;
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .plans-section {
        padding: 40px 0;
    }
    
    .plan-card-landscape {
        padding: 20px;
    }
    
    .plan-rate-landscape {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .plan-duration-landscape {
        align-items: flex-start;
    }
    
    .rate-number {
        font-size: 28px;
    }
    
    .duration-number {
        font-size: 22px;
    }
    
    .detail-item {
        font-size: 12px;
    }
}
